TreeViewEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the AfterCheck, AfterCollapse, AfterExpand, or AfterSelect event of a TreeView.
- C#
- VB.NET
public delegate void TreeViewEventHandler(Object sender, TreeViewEventArgs e)
Public Delegate Sub TreeViewEventHandler(ByVal sender As [Object], ByVal e As TreeViewEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | TreeViewEventArgs | A TreeViewEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| TreeNode.AfterCheck | Occurs after the tree node check box is checked. |
| TreeNode.AfterCollapse | Occurs after the tree node is collapsed. |
| TreeNode.AfterExpand | Occurs after the tree node is expanded. |
| TreeNode.AfterSelect | Occurs after the tree node is selected. |
| TreeView.AfterCheck | Occurs after the tree node check box is checked. |
| TreeView.AfterCollapse | Occurs after the tree node is collapsed. |
| TreeView.AfterExpand | Occurs after the tree node is expanded. |
| TreeView.AfterSelect | Occurs after the tree node is selected. |