Files
docx-js/ts/docx/document/body/page-size.ts

13 lines
302 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
import {XmlComponent, Attributes} from "../../xml-components";
export class PageSize {
private pgSz: Array<XmlComponent>;
constructor() {
this.pgSz = new Array<XmlComponent>();
this.pgSz.push(new Attributes({
w: "11906",
h: "16838"
}));
}
}