Skip to main content
All docs
V17.2

XtraReportBase.OrderedBands Property

Gets the ordered collection of bands contained in a report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v17.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public override IEnumerable<Band> OrderedBands { get; }

Property Value

Type Description
IEnumerable<Band>

An object that specifies the ordered collection of bands contained in the report.

Remarks

The order of bands in the OrderedBands collection corresponds to the order of bands in the current report structure. You can also use the XtraReportBase.Bands property to get an unordered bands collection with indexed access to individual items.

See Also