Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcComboBox Class / IsSelectable Property


In This Topic
    IsSelectable Property
    In This Topic
    Gets or sets a value indicating whether the items can be selected.
    Syntax
    'Declaration
     
    Public Property IsSelectable As Boolean
    'Usage
     
    Dim instance As GcComboBox
    Dim value As Boolean
     
    instance.IsSelectable = value
     
    value = instance.IsSelectable
    public bool IsSelectable {get; set;}

    Property Value

    true the items can be selected; otherwise, false.
    The default is true.
    Remarks
    When this property is set to true, the items of the control can be selected by the user at runtime. With this property set to false, you can't selected the item from dropdown list, but you can still set the value of the SelectedIndex property in code.
    See Also