2018-06-08 16:03:04 +02:00
|
|
|
// http://officeopenxml.com/drwPicFloating-position.php
|
2022-06-26 23:26:42 +01:00
|
|
|
import { XmlComponent } from "@file/xml-components";
|
2018-06-08 16:03:04 +02:00
|
|
|
|
|
|
|
export class PositionOffset extends XmlComponent {
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor(offsetValue: number) {
|
2018-06-08 16:03:04 +02:00
|
|
|
super("wp:posOffset");
|
|
|
|
this.root.push(offsetValue.toString());
|
|
|
|
}
|
|
|
|
}
|