Files
docx-js/src/file/drawing/graphic-frame/graphic-frame-locks/graphic-frame-locks.ts
2022-08-31 07:52:27 +01:00

16 lines
471 B
TypeScript

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