@joefitter/docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
15 lines (13 loc) • 378 B
text/typescript
import { XmlComponent } from "file/xml-components";
import { PicLocksAttributes } from "./pic-locks-attributes";
export class PicLocks extends XmlComponent {
constructor() {
super("a:picLocks");
this.root.push(
new PicLocksAttributes({
noChangeAspect: 1,
noChangeArrowheads: 1,
}),
);
}
}