11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { XmlComponent } from "file/xml-components";
|
|
import { GraphicFrameLocks } from "./graphic-frame-locks/graphic-frame-locks";
|
|
|
|
export class GraphicFrameProperties extends XmlComponent {
|
|
constructor() {
|
|
super("wp:cNvGraphicFramePr");
|
|
|
|
this.root.push(new GraphicFrameLocks());
|
|
}
|
|
}
|