10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
![]() |
// http://officeopenxml.com/drwPicFloating-position.php
|
||
|
import { XmlComponent } from "file/xml-components";
|
||
|
|
||
|
export class PositionOffset extends XmlComponent {
|
||
|
constructor(offsetValue: number) {
|
||
|
super("wp:posOffset");
|
||
|
this.root.push(offsetValue.toString());
|
||
|
}
|
||
|
}
|