'Declaration Public Event ItemCheck As EventHandler(Of ItemCheckEventArgs)
'Usage Dim instance As GcComboBox Dim handler As EventHandler(Of ItemCheckEventArgs) AddHandler instance.ItemCheck, handler
public event EventHandler<ItemCheckEventArgs> ItemCheck
Event Data
The event handler receives an argument of type ItemCheckEventArgs containing data related to this event. The following ItemCheckEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DisplayIndex | Gets the zero-based display index of the ListItem to change. |
NewValue | Gets a value indicating the new checked state of the ListItem. |
OldValue | Gets a value indicating the old checked state of the ListItem. |
See Also