Skip to main content

TreeListNodes Class

Represents a collection of TreeListNode objects in the TreeList component.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public class TreeListNodes :
    IEnumerable<TreeListNode>,
    IEnumerable,
    ICollection

Remarks

The TreeListNodes class allows you to add, remove and access individual nodes in the collection.

The node collection for the Tree List is accessed via the TreeList.Nodes property. These nodes are referred to as root nodes. Every node can have child nodes which are specified by the TreeListNode.Nodes property. Child nodes in turn refer to their parents.

Important

Instances of this class are not intended to be used as stand-alone objects.

Inheritance

See Also