Class TreeNodeAdvCancelableEditEventArgs
Represents the data for the cancelable validation events in the MultiColumnTreeView.
Namespace: Syncfusion.Windows.Forms.Tools.MultiColumnTreeView
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TreeNodeAdvCancelableEditEventArgs : TreeNodeAdvEditEventArgs
Constructors
TreeNodeAdvCancelableEditEventArgs(TreeNodeAdv, String)
Initialize a new instance of the TreeNodeAdvCancelableEditEventArgs class.
Declaration
public TreeNodeAdvCancelableEditEventArgs(TreeNodeAdv node, string label)
Parameters
| Type | Name | Description |
|---|---|---|
| TreeNodeAdv | node | A TreeNodeAdv instance. |
| System.String | label | The new text for the node. |
Properties
Cancel
Gets or sets a value indicating whether the event should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
ContinueEditing
Gets or sets a value indicating whether editing should end now.
Declaration
public bool ContinueEditing { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | This property is consulted only when Cancel is set to true. If you Cancel the operation and if this property is set to false, editing mode will end; otherwise editing mode will be preserved. Default is true. |
Remarks
This property will be ignored by the NodeEditorValidateString event.