Skip to main content
Version: 4.1

NodeLabelEditEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the BeforeLabelEdit and AfterLabelEdit events.

public class NodeLabelEditEventArgs : EventArgs

Constructors​

Instance member NodeLabelEditEventArgs(node)​

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

NameTypeDescription
nodeTreeNodeThe tree node containing the text to edit.

Instance member NodeLabelEditEventArgs(node, label)​

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

NameTypeDescription
nodeTreeNodeThe tree node containing the text to edit.
labelStringThe new text to associate with the tree node.

Instance member NodeLabelEditEventArgs(args)​

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

NameTypeDescription
argsWisejEventArgsThe event arguments received from the client.

Properties​

Instance member CancelEdit​

Boolean: Returns or sets whether the edit has been canceled.

Instance member Label​

String: Returns the new text to associate with the tree node.

Instance member Node​

TreeNode: Returns the tree node containing the text to edit.

Used By​

NameDescription
NodeLabelEditEventHandlerRepresents the method that will handle the BeforeLabelEdit and AfterLabelEdit events of a TreeView control.