Class TreeNodeAdvCancelableEditEventArgs
Represents the data for the cancelable validation events in the TreeViewAdv.
Inheritance
System.Object
System.EventArgs
TreeNodeAdvCancelableEditEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools
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 indicates whether the event should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
ContinueEditing
Gets or sets a value indicates 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.