Class NodeExpandEventArgs
Provides information about the node expand events callback.
Inheritance
System.Object
NodeExpandEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeExpandEventArgs : Object
Constructors
NodeExpandEventArgs()
Declaration
public NodeExpandEventArgs()
Properties
Cancel
Gets or sets whether the expand action should be cancelled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Event
Gets the event argument.
Declaration
public ClickEventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
ClickEventArgs | A ClickEventArgs object that represents the event argument associated with the click event. |
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
Gets or sets the Node expand Event name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
NodeData
Gets or sets the expanded/collapsed node as JSON object from data source.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData | A NodeData object that represents the expanded/collapsed node from the data source. |