diff options
author | Justin Luth <justin.luth@collabora.com> | 2023-02-24 14:00:00 -0500 |
---|---|---|
committer | Justin Luth <jluth@mail.com> | 2023-02-24 22:45:40 +0000 |
commit | ffa403e539bea44ce46fe7d976e7a00b319808f5 (patch) | |
tree | d48acf7fd5edfead27fb7aa76286e4c18c580760 /oovbaapi | |
parent | 0d1d6ca553992fa53e98f749c325d8de39847f17 (diff) |
word vba: add ShowAll to XView
This allows ActiveDocument.ActiveWindow.View.ShowAll = true
ShowAll affects "View -> Formatting Marks"
make CppunitTest_sw_macros_test
Change-Id: I735eb42b0d53c34a4c4770c148f6ab7ac597fd84
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147667
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XView.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/XView.idl b/oovbaapi/ooo/vba/word/XView.idl index 985e5611fbf4..780d65fd3a79 100644 --- a/oovbaapi/ooo/vba/word/XView.idl +++ b/oovbaapi/ooo/vba/word/XView.idl @@ -28,6 +28,9 @@ interface XView set raises ( com::sun::star::script::BasicErrorException ); }; + //Show all nonprinting characters (such as hidden text, spaces, carriage returns, etc.). + [attribute] boolean ShowAll; + [attribute] long SplitSpecial; [attribute] boolean TableGridLines; [attribute] long Type; |