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")] })] })],})); Copy
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")] })] })],}));
Optional
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
Example