Skip to main content

TreeViewState.Nodes Property

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.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public IEnumerable<TreeViewNodeState> Nodes { get; }

Property Value

Type Description
IEnumerable<TreeViewNodeState>

A list of TreeViewNodeState objects containing information about the states of the TreeView nodes.

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