Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetTableViewOptionsPrintPrintingPageOrder Enum

Enumerates worksheet printout page numbering options.

#Declaration

Delphi
TdxSpreadSheetTableViewOptionsPrintPrintingPageOrder = (
    opppDefault,
    opppDownThenOver,
    opppOverThenDown
);

#Members

Name
opppDefault
opppDownThenOver
opppOverThenDown

#Remarks

Options include:

Value Description Example
opppDefault This mode corresponds to the default worksheet printout page order and numbering in a spreadsheet document file format. The most popular formats (such as XLSX, XLTX, ODS, etc.) use the same numbering order as in the mode corresponding to the opppDownThenOver value.
opppDownThenOver The worksheet’s printed area is split into columns from left to right where the page numbers increase from top to bottom, and the top page in a new column follows the bottom page in the previous column.
opppOverThenDown The worksheet’s printed area is split into rows from top to bottom, where the page numbers increase from left to right, and the leftmost page in a new row follows the rightmost page in the previous row.

The Table View worksheet’s OptionsPrint.Printing.PageOrder property references the TdxSpreadSheetTableViewOptionsPrintPrintingPageOrder type.

See Also