Add zIndex property to floating

This commit is contained in:
Dolan
2020-12-25 00:07:57 +00:00
parent 38c8220e9e
commit d74db948ba
3 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,5 @@
// http://officeopenxml.com/drwPicFloating-position.php
// http://officeopenxml.com/drwPicFloating.php
import { ITextWrapping } from "../text-wrap";
export enum HorizontalPositionRelativeFrom {
@ -67,4 +68,5 @@ export interface IFloating {
readonly layoutInCell?: boolean;
readonly margins?: IMargins;
readonly wrap?: ITextWrapping;
readonly zIndex?: number;
}