Control used as a page delimiter in a report.
Remarks
A page break control marks the place where a report should start a new page.
Placing a control into a report creates a page break at the point in the report where it is located. All the controls placed after the page break will be displayed in the new page.
Control is usually used in order to separate some part of the content or data from the other or in order to ensure a consistent look throughout the whole report.
The same functionality can be achieved with property PageBreak on every band. By defining the property it is possible to determine whether page break is inserted and if so where. Page break can be done before the band or after the band.
Example (MxSpace)
To see the PageBreak on a report component, open MxSpace solution project in Visual Studio. In Solution Explorer expand node Reports and double click StockReport.cs. PageBreak control is located in GroupFooter band.
To add PageBreak to a report
- In Solution Explorer open the desired MxReport component (StockReport) by double clicking it.
- Open Toolbox window and expand DX:Reports.vX.X section.
- Select XRPageBreak control and drag it to the desired band (GroupFooter1).
Adding PageBreak control to a GroupFooter band means that every group and its data will be displayed in their own page.
To learn more about the control, how to implement it and use it see Developer Express documentation.