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

16 lines
353 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
import {XmlComponent, Attributes} from "../../xml-components";
2016-04-03 01:44:18 +01:00
export class Columns implements XmlComponent {
2016-03-31 23:01:20 +01:00
private cols: Array<XmlComponent>;
2016-04-03 01:44:18 +01:00
xmlKeys = {
cols: 'w:cols'
}
2016-03-31 23:01:20 +01:00
constructor() {
this.cols = new Array<XmlComponent>();
this.cols.push(new Attributes({
space: "708"
}));
}
}