'Declaration
Public Event ItemLoading As EventHandler(Of ComboBoxItemLoadingEventArgs)
'Usage
Dim instance As C1ComboBox Dim handler As EventHandler(Of ComboBoxItemLoadingEventArgs) AddHandler instance.ItemLoading, handler
public event EventHandler<ComboBoxItemLoadingEventArgs> ItemLoading
Event Data
The event handler receives an argument of type ComboBoxItemLoadingEventArgs containing data related to this event. The following ComboBoxItemLoadingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | Gets the items that is being loaded. |
ItemView | Gets or sets the visual element corresponding to the loading item. |
See Also