Skip to main content
Version: 3.5

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.

public delegate void TreeViewEventHandler(Object sender, TreeViewEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eTreeViewEventArgsA TreeViewEventArgs that contains the event data.

Fired By

NameDescription
TreeNode.AfterCheckOccurs after the tree node check box is checked.
TreeNode.AfterCollapseOccurs after the tree node is collapsed.
TreeNode.AfterExpandOccurs after the tree node is expanded.
TreeNode.AfterSelectOccurs after the tree node is selected.
TreeView.AfterCheckOccurs after the tree node check box is checked.
TreeView.AfterCollapseOccurs after the tree node is collapsed.
TreeView.AfterExpandOccurs after the tree node is expanded.
TreeView.AfterSelectOccurs after the tree node is selected.