Skip to main content

GridBand.Children Property

Provides access to the band’s child band collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

[Browsable(false)]
[XtraSerializableProperty(true, true, true)]
[XtraSerializablePropertyId(3)]
public virtual GridBandCollection Children { get; }

Property Value

Type Description
GridBandCollection

A GridBandCollection object representing the child band collection.

Remarks

Use the returned object’s method and properties to manage the band’s child band collection. You can add, delete and access individual bands. This enables you to build the band’s tree structure. Note that you should first customize bands at the View’s root band level. These bands can be accessed via the BandedGridView.Bands property.

Use the GridBand.HasChildren property to determine whether a particular band has children.

See Also