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

GridLevelNode.Nodes Property

Provides access to the collection of child nodes.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v21.2.dll

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

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.

See Also