2022-06-26 23:26:42 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|