TdxPrinterPage.PageOrder Property
Specifies the page print order.
Declaration
property PageOrder: TdxPageOrder read; write; default poOverThenDown;
Property Value
Type | Default |
---|---|
TdxPageOrder | poOverThenDown |
Remarks
A report’s content is split up into pages horizontally and/or vertically if it does not fit into a single printout page’s content area by width and/or height. The content area dimensions depend on the selected paper size, as well as the header and footer content. The PageOrder property value determines how printout pages are numbered across the report content area.
Value | Description | Example |
---|---|---|
poOverThenDown | A report’s content area is split into rows from top to bottom where page numbers increase from left to right, and the leftmost page in a new row follows the rightmost page in the previous row. | |
poDownThenOver | A report’s content area is split into columns from left to right where page numbers increase from top to bottom, and the top page in a new column follows the bottom page in the previous column. |
The PageOrder property’s default value is poOverThenDown.
See Also