Spread WinForms 15
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / SelectedIndexChanged Event


In This Topic
SelectedIndexChanged Event (GcComboBox)
In This Topic
Occurs when the SelectedIndex property is changed.
Syntax
'Declaration
 
Public Event SelectedIndexChanged As EventHandler
 
'Usage
 
Dim instance As GcComboBox
Dim handler As EventHandler
 
AddHandler instance.SelectedIndexChanged, handler
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