ComponentOne Xamarin.iOS
ItemLoading Event


C1.iOS.Input Assembly > C1.iOS.Input Namespace > C1ComboBox Class : ItemLoading Event
Event raised before an item view is created.
Syntax
'Declaration
 
Public Event ItemLoading As EventHandler(Of ComboBoxItemLoadingEventArgs)
'Usage
 
Dim instance As C1ComboBox
Dim handler As EventHandler(Of ComboBoxItemLoadingEventArgs)
 
AddHandler instance.ItemLoading, handler
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.

PropertyDescription
Gets the items that is being loaded.  
Gets or sets the visual element corresponding to the loading item.  
See Also