KaxComboBoxSelectedIndexChanged Event |
Occurs when the SelectedIndex property has changed.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event KaxComboBoxSelectedIndexChangedEventHandler SelectedIndexChanged
Public Event SelectedIndexChanged As KaxComboBoxSelectedIndexChangedEventHandler
public:
event KaxComboBoxSelectedIndexChangedEventHandler^ SelectedIndexChanged {
void add (KaxComboBoxSelectedIndexChangedEventHandler^ value);
void remove (KaxComboBoxSelectedIndexChangedEventHandler^ value);
}
member SelectedIndexChanged : IEvent<KaxComboBoxSelectedIndexChangedEventHandler,
KaxComboBoxSelectedIndexChangedEventArgs>
Value
Type:
Kettic.AspNet.ControlsKaxComboBoxSelectedIndexChangedEventHandler
RemarksYou can create an event handler for this event to determine when the selected
index in the KaxComboBox has been changed. This can be useful when
you need to display information in other controls based on the current selection in
the KaxComboBox. You can use the event handler to load the
information in the other controls.
See Also