Files
docx-js/src/file/drawing/inline/graphic-frame/graphic-frame-properties.ts

11 lines
308 B
TypeScript
Raw Normal View History

2018-01-11 01:47:09 +00:00
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());
}
}