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

16 lines
464 B
TypeScript
Raw Normal View History

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