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