NodeLabelEditEventArgs Constructors

Definition

Initializes a new instance of the NodeLabelEditEventArgs class.

Overloads

NodeLabelEditEventArgs(TreeNode)

Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode.

NodeLabelEditEventArgs(TreeNode, String)

Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode and the specified text with which to update the tree node label.

NodeLabelEditEventArgs(TreeNode)

Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode.

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

Parameters

node
TreeNode

The tree node containing the text to edit.

Remarks

The Node property is assigned the node parameter value.

See also

Applies to

NodeLabelEditEventArgs(TreeNode, String)

Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode and the specified text with which to update the tree node label.

public:
 NodeLabelEditEventArgs(System::Windows::Forms::TreeNode ^ node, System::String ^ label);
public NodeLabelEditEventArgs (System.Windows.Forms.TreeNode node, string label);
public NodeLabelEditEventArgs (System.Windows.Forms.TreeNode? node, string? label);
new System.Windows.Forms.NodeLabelEditEventArgs : System.Windows.Forms.TreeNode * string -> System.Windows.Forms.NodeLabelEditEventArgs
Public Sub New (node As TreeNode, label As String)

Parameters

node
TreeNode

The tree node containing the text to edit.

label
String

The new text to associate with the tree node.

Remarks

The Node property is assigned the node parameter value, and the Label property is assigned the label parameter value.

See also

Applies to