Base Combo BoxSelection Start Property
Gets or sets the starting index of text selected in the combo box
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
If no text is selected in the control, this property indicates the insertion point for new text. If you set this property to a location beyond the length of the text in the control, the selection start position is placed after the last character. When text is selected in the text box control, changing this property can change the value of the SelectionLength property. If the remaining text in the control after the position indicated by this property is less than the value of the SelectionLength property, the value of the SelectionLength property is automatically decreased. The value of this property never causes an increase in the SelectionLength property.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public int SelectionStart { get; set; }VB
Public Property SelectionStart As Integer
Get
SetC++
public:
property int SelectionStart {
int get ();
void set (int value);
}F#
member SelectionStart : int with get, setProperty Value
Int32If no text is selected in the control, this property indicates the insertion point for new text. If you set this property to a location beyond the length of the text in the control, the selection start position is placed after the last character. When text is selected in the text box control, changing this property can change the value of the SelectionLength property. If the remaining text in the control after the position indicated by this property is less than the value of the SelectionLength property, the value of the SelectionLength property is automatically decreased. The value of this property never causes an increase in the SelectionLength property.