Skip to main content
Tab

TreeViewNodeCollection Class

A collection of nodes within the ASPxTreeView control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class TreeViewNodeCollection :
    HierarchicalCollection<TreeViewNode>

The following members return TreeViewNodeCollection objects:

Remarks

Each node within an ASPxTreeView control can have its own child nodes, held within a collection, which is an instance of the TreeViewNodeCollection class and can be accessed via the Nodes property. The properties and methods exposed by the TreeViewNodeCollection class can be used to perform collection operations, such as adding new or deleting the existing nodes. Each node of the collection is denoted by a TreeViewNode object. Individual nodes can be accessed using indexer notation, by their names or display texts, using the specific methods of the collection.

See Also