Files
docx-js/ts/docx/document/body/columns.ts
2016-03-31 23:01:20 +01:00

12 lines
279 B
TypeScript

import {XmlComponent, Attributes} from "../../xml-components";
export class Columns {
private cols: Array<XmlComponent>;
constructor() {
this.cols = new Array<XmlComponent>();
this.cols.push(new Attributes({
space: "708"
}));
}
}