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

TreeListNodes Class

Represents a collection of TreeListNode objects in the TreeList component.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v18.1.dll

Declaration

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

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the TreeListNodes class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

Object
TreeListNodes
See Also