Files
docx-js/ts/docx/document/body/doc-grid.ts

16 lines
377 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 DocumentGrid implements XmlComponent {
2016-03-31 23:01:20 +01:00
private docGrid: Array<XmlComponent>;
2016-04-03 01:44:18 +01:00
xmlKeys = {
docGrid: 'w:docGrid'
}
2016-03-31 23:01:20 +01:00
constructor() {
this.docGrid = new Array<XmlComponent>();
this.docGrid.push(new Attributes({
linePitch: "360"
}));
}
}