Class NodeExpandEventArgs
Specifies class for NodeExpand event arguments.
Inheritance
System.Object
NodeExpandEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeExpandEventArgs : Object
Constructors
NodeExpandEventArgs()
Declaration
public NodeExpandEventArgs()
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 |
Event
Declaration
public ClickEventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
ClickEventArgs |
IsInteracted
If the event is triggered by interaction, it returns true. Otherwise, it returns false.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Return the Event name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Node
Return the expanded/collapsed TreeView node.
Declaration
public DOM Node { get; set; }
Property Value
Type | Description |
---|---|
DOM |
NodeData
Return the expanded/collapsed node as JSON object from data source.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData |