Work on new table API

This commit is contained in:
Dolan
2019-03-13 02:29:11 +00:00
parent f3ba11b21c
commit 2cb7d44a77
10 changed files with 91 additions and 30 deletions

View File

@ -64,7 +64,10 @@ export class Header extends InitializableXmlComponent {
}
public createTable(rows: number, cols: number): Table {
const table = new Table(rows, cols);
const table = new Table({
rows: rows,
columns: cols,
});
this.addTable(table);
return table;
}