xtrareports-devexpress-dot-xtrareports-dot-ui-dot-band-7338ddd6.md
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.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[DefaultValue(PageBreak.None)]
[SRCategory(ReportStringId.CatBehavior)]
public virtual PageBreak PageBreak { get; set; }
<DefaultValue(PageBreak.None)>
<SRCategory(ReportStringId.CatBehavior)>
Public Overridable Property PageBreak As PageBreak
| 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.
|
The set of possible values for this property is available at PageBreak.
See Also