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

ReportGenerationOptions.PrintBandHeaders Property

Specifies whether to add band headers to the report. This option is in effect when the source object supports bands (BandedGridView and AdvBandedGridView).

Namespace: DevExpress.XtraReports.ReportGeneration

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(DefaultBoolean.True)]
[TypeConverter(typeof(DefaultBooleanConverter))]
public DefaultBoolean PrintBandHeaders { get; set; }

Property Value

Type Default Description
DefaultBoolean **True**

DefaultBoolean.True or DefaultBoolean.Default to add band headers to the report; otherwise DefaultBoolean.False.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

See Also