TreeView for WinForms | ComponentOne
C1.Win.TreeView Namespace / C1TreeView Class / NodeCheckBoxClick Event

In This Topic
    NodeCheckBoxClick Event (C1TreeView)
    In This Topic
    Occurs when the user clicks a node checkbox.
    Syntax
    'Declaration
     
    
    <C1CategoryAttribute("Behavior")>
    <C1DescriptionAttribute("C1TreeView.NodeCheckBoxClick", "Occurs when the user clicks a node checkbox.")>
    Public Event NodeCheckBoxClick As EventHandler(Of C1TreeViewCheckBoxEventArgs)
    [C1Category("Behavior")]
    [C1Description("C1TreeView.NodeCheckBoxClick", "Occurs when the user clicks a node checkbox.")]
    public event EventHandler<C1TreeViewCheckBoxEventArgs> NodeCheckBoxClick
    Event Data

    The event handler receives an argument of type C1TreeViewCheckBoxEventArgs containing data related to this event. The following C1TreeViewCheckBoxEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.HandledEventArgs)
    Gets the tree node whose checkbox was clicked.  
    See Also