docx
    Preparing search index...

    Class FooterWrapper

    Wrapper for document footers.

    FooterWrapper combines a Footer view with its Relationships and Media, enabling footers to contain paragraphs, tables, images, and hyperlinks. Each section can have multiple footers for different page types.

    Reference: http://officeopenxml.com/WPfooter.php

    const footerWrapper = new FooterWrapper(media, 1);
    footerWrapper.add(new Paragraph("Page Footer"));
    footerWrapper.add(new Table({
    rows: [new TableRow({ children: [new TableCell({ children: [new Paragraph("Cell")] })] })],
    }));

    Implements

    • IViewWrapper
    Index

    Constructors

    Accessors

    Methods

    Constructors

    Accessors

    • get Relationships(): Relationships

      Returns Relationships

    Methods