'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.
Property | Description |
---|---|
Handled | (Inherited from System.ComponentModel.HandledEventArgs) |
Node | Gets the tree node whose checkbox was clicked. |
See Also