Skip to main content

XtraReport.CrossBandControls Property

Provides access to a collection of cross-band controls in the current report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[Browsable(false)]
public XRCrossBandControlCollection CrossBandControls { get; }

Property Value

Type Description
XRCrossBandControlCollection

An XRCrossBandControlCollection object containing all cross-band controls, which exist in the current report.

Remarks

Unlike all common report controls, cross-band controls don’t belong to the XRControl.Controls collection of any band, because they don’t belong to any specific band. So, all these controls belong to the entire report, and are accessible via its XtraReport.CrossBandControls collection.

The start and end bands of any cross-band control is determined by its XRCrossBandControl.StartBand and XRCrossBandControl.EndBand properties.

See Also