2018-01-24 00:01:38 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IPageSizeAttributes {
|
2018-01-25 01:21:03 +00:00
|
|
|
width?: number;
|
|
|
|
height?: number;
|
2018-01-24 00:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class PageSizeAttributes extends XmlAttributeComponent<IPageSizeAttributes> {
|
|
|
|
protected xmlKeys = {
|
|
|
|
width: "w:w",
|
|
|
|
height: "w:h",
|
|
|
|
};
|
|
|
|
}
|