Skip to main content

TdxSpreadSheetTableViewOptionsPrintPrintingPageOrder Enum

Enumerates worksheet printout page numbering options.

Declaration

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