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

16 lines
471 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 {
2022-08-31 07:52:27 +01:00
public constructor() {
2018-01-11 01:47:09 +00:00
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
}
}