Mandatory Sections

This commit is contained in:
Dolan Miu
2019-07-31 08:48:02 +01:00
parent bf80311ef7
commit ac5b15d0e3
63 changed files with 1194 additions and 1588 deletions

View File

@ -10,11 +10,12 @@ const table = new Table({
columns: 4,
});
doc.add(table);
table.getCell(2, 2).add(new Paragraph("Hello"));
table.getColumn(3).mergeCells(1, 2);
// table.getCell(3, 2).add(new Paragraph("Hello"));
doc.addSection({
children: [table],
});
const packer = new Packer();