ComboBox.SelectionStart

From Xojo Documentation

Property (As Integer )
aComboBox.SelectionStart = newIntegerValue
or
IntegerValue = aComboBox.SelectionStart

New in 2019r2

Supported for all project types and targets.

The position of the insertion point. A value of zero means that the insertion point is before the first character.

Notes

Use SelectionStart to set the position of the insertion point in the text. Use SelectionStart in conjunction with SelectionLength to select a portion of the text in the ComboBox, beginning with SelectionStart and extending for SelectionLength characters.

Sample Code

This code selects the second through the fourth characters. After the code is executed, those characters are highlighted in the ComboBox.

ComboBox1.SelectionStart = 1
ComboBox1.SelectionLength = 3