C# Class Habanero.Faces.Base.TreeViewEventArgs

Provides data for the TreeView.AfterCheck, TreeView.AfterCollapse, TreeView.AfterExpand, or TreeView.AfterSelect events of a TreeView control.
Inheritance: System.EventArgs
Show file Open project: Chillisoft/habanero.faces Class Usage Examples

Public Methods

Method Description
TreeViewEventArgs ( ITreeNode node ) : System

Initializes a new instance of the TreeViewEventArgs class for the specified tree node.

TreeViewEventArgs ( ITreeNode node, TreeViewAction action ) : System

Initializes a new instance of the TreeViewEventArgs class for the specified tree node and with the specified type of action that raised the event.

Method Details

TreeViewEventArgs() public method

Initializes a new instance of the TreeViewEventArgs class for the specified tree node.
public TreeViewEventArgs ( ITreeNode node ) : System
node ITreeNode The TreeNode that the event is responding to.
return System

TreeViewEventArgs() public method

Initializes a new instance of the TreeViewEventArgs class for the specified tree node and with the specified type of action that raised the event.
public TreeViewEventArgs ( ITreeNode node, TreeViewAction action ) : System
node ITreeNode The TreeNode that the event is responding to.
action TreeViewAction The type of TreeViewAction that raised the event.
return System