Created float positioning for tables

This commit is contained in:
Sergio Mendonça
2018-10-23 09:08:43 -02:00
parent 1eed844b9a
commit 54697ab6b1
7 changed files with 282 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import { IXmlableObject, XmlComponent } from "file/xml-components";
import { Paragraph } from "../paragraph";
import { TableGrid } from "./grid";
import { TableProperties } from "./properties";
import { TableFloatProperties } from "./table-float-properties";
export class Table extends XmlComponent {
private readonly properties: TableProperties;
@ -87,6 +88,11 @@ export class Table extends XmlComponent {
public get Properties(): TableProperties {
return this.properties;
}
public setTableFloatProperties(tableFloatProperties: TableFloatProperties): Table {
this.properties.setTableFloatProperties(tableFloatProperties);
return this;
}
}
export class TableRow extends XmlComponent {