ComponentOne ComboBox for ASP.NET Web Forms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1ComboBox Namespace / C1ComboBoxItemEventHandler Delegate
The source of the event.
An C1ComboBoxItemEventArgs that contains event data.

In This Topic
    C1ComboBoxItemEventHandler Delegate
    In This Topic
    Represents the method that will handle an data binding events of C1ComboBox. Such as C1ComboBox.BoundItemCreated event and C1ComboBox.ItemDataBinding event.
    Syntax
    'Declaration
     
    Public Delegate Sub C1ComboBoxItemEventHandler( _
       ByVal sender As System.Object, _
       ByVal args As C1ComboBoxItemEventArgs _
    ) 
    public delegate void C1ComboBoxItemEventHandler( 
       System.object sender,
       C1ComboBoxItemEventArgs args
    )

    Parameters

    sender
    The source of the event.
    args
    An C1ComboBoxItemEventArgs that contains event data.
    See Also