Class NodeClickEventArgs
Provides information about the NodeClicked event callback.
Inheritance
System.Object
NodeClickEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeClickEventArgs : Object
Constructors
NodeClickEventArgs()
Declaration
public NodeClickEventArgs()
Properties
Event
Gets the actual event.
Declaration
public ClickEventArgs Event { get; }
Property Value
Type | Description |
---|---|
ClickEventArgs | The ClickEventArgs object that represents the click event. |
Left
Gets the Client X value of target element.
Declaration
public double Left { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Name
Gets or sets the 'Node click' Event name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
NodeData
Gets or sets the current clicked TreeView node data.
Declaration
public NodeData NodeData { get; set; }
Property Value
Type | Description |
---|---|
NodeData | A NodeData object that represents the data associated with the currently clicked node. |
Top
Gets the Client Y value of target element.
Declaration
public double Top { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |