NodeLabelEditEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the BeforeLabelEdit and AfterLabelEdit events.
- C#
- VB.NET
public class NodeLabelEditEventArgs : EventArgs
Public Class NodeLabelEditEventArgs
Inherits EventArgs
Constructors
NodeLabelEditEventArgs(node)
Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode.
| Name | Type | Description |
|---|---|---|
| node | TreeNode | The tree node containing the text to edit. |
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.
| Name | Type | Description |
|---|---|---|
| node | TreeNode | The tree node containing the text to edit. |
| label | String | The new text to associate with the tree node. |
NodeLabelEditEventArgs(args)
Initializes a new instance of the NodeLabelEditEventArgs class for the specified TreeNode.
| Name | Type | Description |
|---|---|---|
| args | WisejEventArgs | The event arguments received from the client. |
Properties
CancelEdit
Boolean: Returns or sets whether the edit has been canceled.
Label
String: Returns the new text to associate with the tree node.
Node
TreeNode: Returns the tree node containing the text to edit.
Used By
| Name | Description |
|---|---|
| NodeLabelEditEventHandler | Represents the method that will handle the BeforeLabelEdit and AfterLabelEdit events of a TreeView control. |