SheetXL - v0.3.20
    Preparing search index...

    Interface HeaderFooter

    Interface for configuring headers and footers for print, supporting different settings for first, odd, and even pages.

    interface HeaderFooter {
        alignWithMargins?: boolean;
        differentFirst?: boolean;
        differentOddEven?: boolean;
        evenFooter?: MultiPage;
        evenHeader?: MultiPage;
        firstFooter?: MultiPage;
        firstHeader?: MultiPage;
        headerFooter?: MultiPage;
        oddFooter?: MultiPage;
        oddHeader?: MultiPage;
        scaleWithDoc?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alignWithMargins?: boolean

    Whether content should be aligned with the page margins.

    differentFirst?: boolean

    Specifies if the first page is different from subsequent pages.

    differentOddEven?: boolean

    Specifies if odd and even pages should have different settings.

    evenFooter?: MultiPage

    Configuration for the footer on even pages.

    evenHeader?: MultiPage

    Configuration for the header on even pages.

    firstFooter?: MultiPage

    Configuration for the footer on the first page.

    firstHeader?: MultiPage

    Configuration for the header on the first page.

    headerFooter?: MultiPage

    Configuration for general header and footer settings.

    oddFooter?: MultiPage

    Configuration for the footer on odd pages.

    oddHeader?: MultiPage

    Configuration for the header on odd pages.

    scaleWithDoc?: boolean

    Whether the content should scale proportionally with the document.