'Declaration
<C1DescriptionAttribute("C1TreeView.NodeCheckBoxClick", "Occurs when the user clicks a node checkbox.")> <C1CategoryAttribute("Behavior")> Public Event NodeCheckBoxClick As EventHandler(Of C1TreeViewCheckBoxEventArgs)
[C1Description("C1TreeView.NodeCheckBoxClick", "Occurs when the user clicks a node checkbox.")] [C1Category("Behavior")] 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