diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/vml/vmlformatting.hxx | 1 | ||||
-rw-r--r-- | include/svx/msdffdef.hxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/oox/vml/vmlformatting.hxx b/include/oox/vml/vmlformatting.hxx index 5bfb0c09e0fb..1c589897ebcc 100644 --- a/include/oox/vml/vmlformatting.hxx +++ b/include/oox/vml/vmlformatting.hxx @@ -254,6 +254,7 @@ struct OOX_DLLPUBLIC TextpathModel { OptValue<OUString> moString; ///< Specifies the string of the textpath. OptValue<OUString> moStyle; ///< Specifies the style of the textpath. + OptValue<bool> moTrim; ///< Specifies whether extra space is removed above and below the text TextpathModel(); diff --git a/include/svx/msdffdef.hxx b/include/svx/msdffdef.hxx index 0c62f5e6d0d2..238ab5280fd8 100644 --- a/include/svx/msdffdef.hxx +++ b/include/svx/msdffdef.hxx @@ -848,8 +848,10 @@ enum MSO_SYSCOLORINDEX { enum MSO_TextGeometryProperties { use_gtextFBestFit = 0x00000100, + use_gtextFShrinkFit = 0x00000200, use_gtextFStretch = 0x00000400, gtextFBestFit = 0x01000000, + gtextFShrinkFit = 0x02000000, gtextFStretch = 0x04000000 }; |