Skip to main content

GridLevelNode.Nodes Property

Provides access to the collection of child nodes.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

[Browsable(false)]
public GridLevelNodeCollection Nodes { get; }

Property Value

Type Description
GridLevelNodeCollection

A GridLevelNodeCollection object representing the collection of child nodes.

Remarks

Use this property to add, remove or access the child nodes of the current node. Child nodes can be added by calling the GridLevelNodeCollection.Add or GridLevelNodeCollection.AddRange methods. To access specific nodes use index notation. It’s also possible to retrieve a specific node via the GridLevelNode.Find method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Nodes property.

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.

See Also