deno.land / x / docx@8.5.0 / demo / 67-column-break.ts

67-column-break.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 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);});
docx

Version Info

Tagged at
4 months ago