TreeViewEventArgs Constructors

Definition

Initializes a new instance of the TreeViewEventArgs class.

Overloads

TreeViewEventArgs(TreeNode)

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

TreeViewEventArgs(TreeNode, TreeViewAction)

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

TreeViewEventArgs(TreeNode)

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

public:
 TreeViewEventArgs(System::Windows::Forms::TreeNode ^ node);
public TreeViewEventArgs (System.Windows.Forms.TreeNode node);
public TreeViewEventArgs (System.Windows.Forms.TreeNode? node);
new System.Windows.Forms.TreeViewEventArgs : System.Windows.Forms.TreeNode -> System.Windows.Forms.TreeViewEventArgs
Public Sub New (node As TreeNode)

Parameters

node
TreeNode

The TreeNode that the event is responding to.

See also

Applies to

TreeViewEventArgs(TreeNode, TreeViewAction)

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(System::Windows::Forms::TreeNode ^ node, System::Windows::Forms::TreeViewAction action);
public TreeViewEventArgs (System.Windows.Forms.TreeNode node, System.Windows.Forms.TreeViewAction action);
public TreeViewEventArgs (System.Windows.Forms.TreeNode? node, System.Windows.Forms.TreeViewAction action);
new System.Windows.Forms.TreeViewEventArgs : System.Windows.Forms.TreeNode * System.Windows.Forms.TreeViewAction -> System.Windows.Forms.TreeViewEventArgs
Public Sub New (node As TreeNode, action As TreeViewAction)

Parameters

node
TreeNode

The TreeNode that the event is responding to.

action
TreeViewAction

The type of TreeViewAction that raised the event.

Applies to