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

Band.PageBreak Property

Gets or sets a value that determines where to make a page break, in respect to the given band.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

[DefaultValue(PageBreak.None)]
[SRCategory(ReportStringId.CatBehavior)]
public virtual PageBreak PageBreak { get; set; }

Property Value

Type Default Description
PageBreak **None**

A PageBreak enumeration value.

Available values:

Name Description
None

No page breaks should be inserted before or after the current band.

BeforeBand

A page break is inserted before the band.

BeforeBandExceptFirstEntry

A page break is inserted before the band with the exception of the first entry.

AfterBand

A page break is inserted after the band.

AfterBandExceptLastEntry

A page break is inserted after the band with the exception of the last entry.

Remarks

The set of possible values for this property is available at PageBreak.

See Also