Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcComboBox Class / ItemCheck Event


In This Topic
    ItemCheck Event (GcComboBox)
    In This Topic
    Syntax
    '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.

    PropertyDescription
    Gets the zero-based display index of the ListItem to change.  
    Gets a value indicating the new checked state of the ListItem.  
    Gets a value indicating the old checked state of the ListItem.  
    See Also