TreeViewState.Nodes Property
In This Article
Gets a list of objects that represents the states of all the nodes within the TreeView extension.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public IEnumerable<TreeViewNodeState> Nodes { get; }
#Property Value
Type | Description |
---|---|
IEnumerable<Tree |
A list of Tree |
#Remarks
Use the Nodes property to get a list that contains information about the states of all TreeView nodes. To get the state of the selected node only, use the TreeViewState.SelectedNode property.
See Also