Files
docx-js/ts/docx/document/body/doc-grid.ts
2016-04-09 20:16:35 +01:00

11 lines
251 B
TypeScript

import {XmlComponent, Attributes} from "../../xml-components";
export class DocumentGrid extends XmlComponent {
constructor() {
super("w:docGrid");
this.root.push(new Attributes({
linePitch: "360"
}));
}
}