Class NodeKeyPressEventArgs
Specifies class for NodeKeyPress event arguments.
Inheritance
System.Object
NodeKeyPressEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeKeyPressEventArgs : Object
Constructors
NodeKeyPressEventArgs()
Declaration
public NodeKeyPressEventArgs()
Properties
Action
Return the Key Action of Event.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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
Return the actual event.
Declaration
public KeyboardEventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.KeyboardEventArgs |
Key
Return the Key value of Event.
Declaration
public string Key { 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 |
Node
Return the current active TreeView node.
Declaration
public DOM Node { get; set; }
Property Value
Type | Description |
---|---|
DOM |
NodeData
Return the current active node as JSON object from data source.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData |