19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import { XmlComponent } from "@file/xml-components";
|
|
|
|
import { ExtentAttributes } from "./extent-attributes";
|
|
|
|
export class Extent extends XmlComponent {
|
|
private readonly attributes: ExtentAttributes;
|
|
|
|
constructor(x: number, y: number) {
|
|
super("wp:extent");
|
|
|
|
this.attributes = new ExtentAttributes({
|
|
cx: x,
|
|
cy: y,
|
|
});
|
|
|
|
this.root.push(this.attributes);
|
|
}
|
|
}
|