added body
This commit is contained in:
12
ts/docx/document/body/doc-grid.ts
Normal file
12
ts/docx/document/body/doc-grid.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import {XmlComponent, Attributes} from "../../xml-components";
|
||||
|
||||
export class DocumentGrid {
|
||||
private docGrid: Array<XmlComponent>;
|
||||
|
||||
constructor() {
|
||||
this.docGrid = new Array<XmlComponent>();
|
||||
this.docGrid.push(new Attributes({
|
||||
linePitch: "360"
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user