diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-05-22 19:30:37 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-05-23 08:12:27 +0200 |
commit | 23aff73f167c898238f2d1b8f6f6d5b42b699f02 (patch) | |
tree | 00bb0b74d1986ecdee5a9448e2cb755bc1aa5d27 /oovbaapi | |
parent | 73f8222109c3091d5119ed47eac5cad4a55b2212 (diff) |
Add ooo.vba.word.XDocument.SavePreviewPngAs() and implement
This is for COLEAT's internal use.
Change-Id: If1ac2a5b251129e4431d3c0bde82529d6bdc7ccc
Reviewed-on: https://gerrit.libreoffice.org/72809
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XDocument.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/word/XDocument.idl b/oovbaapi/ooo/vba/word/XDocument.idl index 888287b34e1b..63e4535e9075 100644 --- a/oovbaapi/ooo/vba/word/XDocument.idl +++ b/oovbaapi/ooo/vba/word/XDocument.idl @@ -63,7 +63,8 @@ interface XDocument any Frames( [in] any index ); void SaveAs2000( [in] any FileName, [in] any FileFormat, [in] any LockComments, [in] any Password, [in] any AddToRecentFiles, [in] any WritePassword, [in] any ReadOnlyRecommended, [in] any EmbedTrueTypeFonts, [in] any SaveNativePictureFormat, [in] any SaveFormsData, [in] any SaveAsAOCELetter ); void SaveAs( [in] any FileName, [in] any FileFormat, [in] any LockComments, [in] any Password, [in] any AddToRecentFiles, [in] any WritePassword, [in] any ReadOnlyRecommended, [in] any EmbedTrueTypeFonts, [in] any SaveNativePictureFormat, [in] any SaveFormsData, [in] any SaveAsAOCELetter, [in] any Encoding, [in] any InsertLineBreaks, [in] any AllowSubstitutions, [in] any LineEnding, [in] any AddBiDiMarks ); - + // This is a COLEAT-specific addition + void SavePreviewPngAs( [in] any FileName ); }; }; }; }; |