31 lines
819 B
TypeScript
31 lines
819 B
TypeScript
// Section with 2 columns including a column break
|
|
|
|
import * as fs from "fs";
|
|
import { Document, Packer, Paragraph, ColumnBreak, TextRun } from "docx";
|
|
|
|
const doc = new Document({
|
|
sections: [
|
|
{
|
|
properties: {
|
|
column: {
|
|
space: 708,
|
|
count: 2,
|
|
},
|
|
},
|
|
children: [
|
|
new Paragraph({
|
|
children: [
|
|
new TextRun("This text will be in the first column."),
|
|
new ColumnBreak(),
|
|
new TextRun("This text will be in the second column."),
|
|
],
|
|
}),
|
|
],
|
|
},
|
|
],
|
|
});
|
|
|
|
Packer.toBuffer(doc).then((buffer) => {
|
|
fs.writeFileSync("My Document.docx", buffer);
|
|
});
|