Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / ListSelectedItemIndexChanged Event


In This Topic
    ListSelectedItemIndexChanged Event
    In This Topic
    Occurs when the ListSelectedItemIndex property is changed.
    Syntax
    'Declaration
     
    
    Public Event ListSelectedItemIndexChanged As EventHandler
    'Usage
     
    
    Dim instance As GcComboBox
    Dim handler As EventHandler
     
    AddHandler instance.ListSelectedItemIndexChanged, handler
    public event EventHandler ListSelectedItemIndexChanged
    Remarks
    You can create an event handler for this event to determine when the selected index in the GcComboBox has been changed. This can be useful when you need to display information in other controls based on the current selection in the GcComboBox. You can use the event handler for this event to load the information in the other controls.
    See Also