Skip to main content

TreeListNodeCollection Class

A collection of nodes.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.dll

#Declaration

public class TreeListNodeCollection :
    Collection<TreeListNode>

#Returned By

Properties that return TreeListNodeCollection instances:

#Remarks

Nodes are stored as nested collections, because the TreeListView displays data in a tree. The collection of root level nodes can be accessed via the TreeListView.Nodes property. Each node has its own collection of child nodes available via the TreeListNode.Nodes property. These child nodes have their own children, etc.

treelistlevels

In a bound mode, nodes are created automatically for every record in a data source. In an unbound mode, you need to create nodes manually.

To learn more, see Nodes Overview.

#Inheritance

Object
Collection<TreeListNode>
TreeListNodeCollection
See Also