Files
docx-js/ts/docx/document/body/page-size.ts
2016-04-03 01:44:18 +01:00

17 lines
376 B
TypeScript

import {XmlComponent, Attributes} from "../../xml-components";
export class PageSize implements XmlComponent {
private pgSz: Array<XmlComponent>;
xmlKeys = {
pgSz: 'w:pgSz'
}
constructor() {
this.pgSz = new Array<XmlComponent>();
this.pgSz.push(new Attributes({
w: "11906",
h: "16838"
}));
}
}