Files
docx-js/src/file/drawing/floating/position-offset.ts
2022-08-31 07:52:27 +01:00

10 lines
294 B
TypeScript

// http://officeopenxml.com/drwPicFloating-position.php
import { XmlComponent } from "@file/xml-components";
export class PositionOffset extends XmlComponent {
public constructor(offsetValue: number) {
super("wp:posOffset");
this.root.push(offsetValue.toString());
}
}