Files
docx-js/ts/docx/document/body/doc-grid.ts
2017-03-08 20:35:26 +00:00

11 lines
253 B
TypeScript

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