SheetXL - v0.3.20
    Preparing search index...

    Interface PageSetup

    Interface for configuring page setup options for print.

    interface PageSetup {
        blackAndWhite?: boolean;
        cellComments?: string;
        copies?: number;
        draft?: boolean;
        errors?: string;
        firstPageNumber?: number;
        fitToHeight?: number;
        fitToWidth?: number;
        horizontalDpi?: number;
        orientation?: string;
        pageOrder?: string;
        paperSize?: number;
        scale?: number;
        useFirstPageNumber?: boolean;
        usePrinterDefaults?: boolean;
        verticalDpi?: number;
    }
    Index

    Properties

    blackAndWhite?: boolean

    Whether to print in black and white.

    cellComments?: string

    Specifies how cell comments are printed.

    copies?: number

    The number of copies to print.

    draft?: boolean

    Whether to print in draft mode for quicker printing.

    errors?: string

    Specifies how errors should be displayed in the print.

    firstPageNumber?: number

    The page number to start printing from.

    fitToHeight?: number

    The number of pages to fit vertically.

    fitToWidth?: number

    The number of pages to fit horizontally.

    horizontalDpi?: number

    The horizontal DPI (dots per inch) for printing.

    orientation?: string

    The orientation of the page (portrait or landscape).

    pageOrder?: string

    Specifies the order of pages when printed.

    paperSize?: number

    Specifies the paper size for printing (enum values 1-68).

    scale?: number

    Specifies the scaling factor for printing (between 10 and 400).

    useFirstPageNumber?: boolean

    Whether to use the first page number specified in firstPageNumber.

    usePrinterDefaults?: boolean

    Whether to use the printer's default settings for the print job.

    verticalDpi?: number

    The vertical DPI (dots per inch) for printing.