Skip to main content

ASPxTreeList.GetAllNodes() Method

Returns a list of all nodes displayed within the ASPxTreeList.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public ICollection<TreeListNode> GetAllNodes()

#Returns

Type Description
ICollection<TreeListNode>

The collection which contains all nodes displayed within the ASPxTreeList.

#Remarks

The GetAllNodes method can be useful if you need to traverse through all nodes contained within the ASPxTreeList. This allows you to avoid using the Node Iterator.

See Also