Skip to main content
Module

x/docx/demo/58-section-types.ts

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
Go to Latest
File
// Usage of different Section Types// Import from 'docx' rather than '../build' if you install from npmimport * as fs from "fs";import { Document, Packer, Paragraph, TextRun, SectionType } from "../build";
const doc = new Document({ sections: [ { properties: {}, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, }), ], }), ], }, { properties: { type: SectionType.CONTINUOUS, }, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, }), ], }), ], }, { properties: { type: SectionType.ODD_PAGE, }, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, }), ], }), ], }, { properties: { type: SectionType.EVEN_PAGE, }, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, }), ], }), ], }, { properties: { type: SectionType.NEXT_PAGE, }, children: [ new Paragraph({ children: [ new TextRun("Hello World"), new TextRun({ text: "Foo Bar", bold: true, }), ], }), ], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});