Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListNodes Class

Represents a collection of TreeListNode objects in the TreeList component.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v24.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