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

GridBand.Children Property

Provides access to the band’s child band collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Children 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