Represents a document footer.
Footers appear at the bottom of each page in a section and can contain paragraphs, tables, images, and other content.
const footer = new Footer({ children: [ new Paragraph({ children: [new TextRun("Page "), PageNumber.CURRENT] }), ],}); Copy
const footer = new Footer({ children: [ new Paragraph({ children: [new TextRun("Page "), PageNumber.CURRENT] }), ],});
Readonly
Represents a document footer.
Footers appear at the bottom of each page in a section and can contain paragraphs, tables, images, and other content.
Public Api
Example