Skip to main content
A newer version of this page is available. .

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

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