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

15 lines
429 B
TypeScript
Raw Normal View History

2018-01-11 01:47:09 +00:00
import { XmlComponent } from "file/xml-components";
import { GraphicFrameLockAttributes } from "./graphic-frame-lock-attributes";
export class GraphicFrameLocks extends XmlComponent {
constructor() {
super("a:graphicFrameLocks");
this.root.push(new GraphicFrameLockAttributes({
xmlns: "http://schemas.openxmlformats.org/drawingml/2006/main",
noChangeAspect: 1,
}));
}
}