Files
docx-js/ts/docx/document/body/columns.ts

12 lines
279 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
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"
}));
}
}