Class NodeRenderEventArgs<T>
Provides information about the OnNodeRender event callback.
Inheritance
System.Object
NodeRenderEventArgs<T>
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeRenderEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the TValue of TreeView events. |
Constructors
NodeRenderEventArgs()
Declaration
public NodeRenderEventArgs()
Properties
Name
Gets or sets the 'NodeRender' Event name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Node
Gets or sets the current rendering node.
Declaration
public ElementReference Node { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | The current rendering node as an Microsoft.AspNetCore.Components.ElementReference object. |
NodeData
Gets or sets the current rendering node as JSON object.
Declaration
public T NodeData { get; set; }
Property Value
Type | Description |
---|---|
T | The JSON object representing the current rendering node. |
Text
Gets or sets the current rendering node text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |