Class NodeSelectEventArgs
Provides information about the node selection event callback.
Inheritance
System.Object
NodeSelectEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeSelectEventArgs : Object
Constructors
NodeSelectEventArgs()
Declaration
public NodeSelectEventArgs()
Properties
Action
Gets or sets the name of action like select or un-select.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Cancel
Gets or sets whether the node selection should be cancelled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
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 selection Event name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
NodeData
Gets or sets the currently selected node as JSON object from data source.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData | A NodeData object that represents the currently selected node from the data source. |