Files
docx-js/ts/docx/document/body/columns.ts
2016-04-03 01:44:18 +01:00

16 lines
353 B
TypeScript

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