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

17 lines
376 B
TypeScript
Raw Normal View History

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