diff options
author | Hannah Meeks <hmeeks4135@gmail.com> | 2022-07-30 11:11:06 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2022-08-05 12:06:26 +0200 |
commit | f3234f4f14702da71528561418f07ee6670a8c2a (patch) | |
tree | 50615fc66b6d42cc805fdc3fb767ef554a7376e1 /oovbaapi | |
parent | 563e95965c1e377db8f24066627919654e21494c (diff) |
VBA Add Padding properties to XTable
Change-Id: I021ad15b81ce55c4f9e9e9b515be1ddaaca8d07d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137630
Tested-by: Jenkins
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XTable.idl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/XTable.idl b/oovbaapi/ooo/vba/word/XTable.idl index 0ce702c7e613..683e859e4040 100644 --- a/oovbaapi/ooo/vba/word/XTable.idl +++ b/oovbaapi/ooo/vba/word/XTable.idl @@ -54,6 +54,11 @@ interface XTable any Rows([in] any aIndex ); any Columns([in] any aIndex ); + + [attribute] double BottomPadding; + [attribute] double LeftPadding; + [attribute] double RightPadding; + [attribute] double TopPadding; }; }; }; }; |