deno.land / x / docx@8.5.0 / demo / 25-table-xml-styles.ts

25-table-xml-styles.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Example of how you would create a table and add data to it
import * as fs from "fs";import { Document, Packer, Paragraph, Table, TableCell, TableRow, WidthType } from "docx";
const styles = fs.readFileSync("./demo/assets/custom-styles.xml", "utf-8");
// Create a table and pass the XML Styleconst table = new Table({ style: "MyCustomTableStyle", width: { size: 9070, type: WidthType.DXA, }, rows: [ new TableRow({ children: [ new TableCell({ children: [new Paragraph("Header Colum 1")], }), new TableCell({ children: [new Paragraph("Header Colum 2")], }), ], }), new TableRow({ children: [ new TableCell({ children: [new Paragraph("Column Content 3")], }), new TableCell({ children: [new Paragraph("Column Content 2")], }), ], }), ],});
const doc = new Document({ title: "Title", externalStyles: styles, sections: [ { children: [table], }, ],});
Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer);});
docx

Version Info

Tagged at
4 months ago