Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / SelectionStart Property


In This Topic
    SelectionStart Property (GcComboBox)
    In This Topic
    Gets or sets the selection start.
    Syntax
    'Declaration
     
    
    Public Overrides Property SelectionStart As Integer
    'Usage
     
    
    Dim instance As GcComboBox
    Dim value As Integer
     
    instance.SelectionStart = value
     
    value = instance.SelectionStart
    public override int SelectionStart {get; set;}

    Property Value

    The selection start.
    Remarks
    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 will be placed after the last character. When text is selected in the control, changing this property might decrease the value of the SelectionLength property. If the remaining text in the control after the position indicated by the SelectionStart property is less than the value of the SelectionLength property, the value of the SelectionLength property is automatically decreased. The value of the SelectionStart property never causes an increase in the SelectionLength property.
    See Also