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

11 lines
251 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
import {XmlComponent, Attributes} from "../../xml-components";
2016-04-09 20:16:35 +01:00
export class DocumentGrid extends XmlComponent {
2016-03-31 23:01:20 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:docGrid");
this.root.push(new Attributes({
2016-03-31 23:01:20 +01:00
linePitch: "360"
}));
}
}