Class NodeData
Specifies class that holds the node details.
Inheritance
System.Object
NodeData
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class NodeData : Object
Constructors
NodeData()
Declaration
public NodeData()
Properties
Expanded
Specifies the mapping field for expand state of the TreeView node.
Declaration
public bool Expanded { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
HasChildren
Specifies the mapping field for hasChildren to check whether a node has child nodes or not.
Declaration
public bool HasChildren { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Id
Specifies the ID field mapped in dataSource.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsChecked
Specifies the field for checked state of the TreeView node.
Declaration
public string IsChecked { 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 |
ParentID
Specifies the parent ID field mapped in dataSource.
Declaration
public string ParentID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Selected
Specifies the mapping field for selected state of the TreeView node.
Declaration
public bool Selected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Text
Specifies the mapping field for text displayed as TreeView node's display text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |