added fixedWidthLayout option and method

This commit is contained in:
felipe
2017-03-11 09:59:29 +01:00
parent 210b97d00b
commit c10b576a3a
4 changed files with 48 additions and 0 deletions

View File

@ -55,6 +55,11 @@ export class Table extends XmlComponent {
this.properties.setWidth(type, width);
return this;
}
public fixedWidthLayout(): Table {
this.properties.fixedWidthLayout();
return this;
}
}
class TableRow extends XmlComponent {