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

13 lines
266 B
TypeScript
Raw Normal View History

2017-03-08 20:35:26 +00:00
import { Attributes, XmlComponent } from "../../xml-components";
2016-03-31 23:01:20 +01:00
2016-04-09 20:16:35 +01:00
export class PageSize extends XmlComponent {
2016-03-31 23:01:20 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:pgSz");
this.root.push(new Attributes({
2016-03-31 23:01:20 +01:00
w: "11906",
2017-03-08 21:36:09 +00:00
h: "16838",
2016-03-31 23:01:20 +01:00
}));
}
2017-03-08 21:36:09 +00:00
}