Skip to main content

TreeListNodes(TreeList, TreeListNode) Constructor

Creates a collection of child nodes for a specific parent node.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public TreeListNodes(
    TreeList treeList,
    TreeListNode parentNode
)

Parameters

Name Type Description
treeList TreeList

A TreeList class instance to which the collection belongs.

parentNode TreeListNode

The node for which to create a collection of child nodes.

Remarks

If the parentNode argument is null, the node collection will be created at the root level.

See Also