Class NodeEditEventArgs
Specifies class for NodeEdit event arguments.
Inheritance
System.Object
NodeEditEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeEditEventArgs : Object
Constructors
NodeEditEventArgs()
Declaration
public NodeEditEventArgs()
Properties
Cancel
If you want to cancel this event then, set cancel as true. Otherwise, false.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
InnerHtml
Gets or sets the inner HTML of TreeView node while editing.
Declaration
public string InnerHtml { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Return the Event name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NewText
Return the current TreeView node new text.
Declaration
public string NewText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Node
Return the current TreeView node.
Declaration
public DOM Node { get; set; }
Property Value
Type | Description |
---|---|
DOM |
NodeData
Return the current node as JSON object from data source.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData |
OldText
Return the current TreeView node old text.
Declaration
public string OldText { get; set; }
Property Value
Type | Description |
---|---|
System.String |