diff options
author | Noel Power <noel.power@novell.com> | 2012-04-20 18:25:45 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2012-04-20 18:26:21 +0100 |
commit | 101132c28a8f084612106337f4cafe21c535dea8 (patch) | |
tree | 9e4e08d033be4e37414578ea726222ad7adb47e9 /oovbaapi | |
parent | f2cf3f30a76cb257bf44f9651b295280fb12d4aa (diff) |
add stub vba implementation Application methods
added Application.DisplayExcel4Menus, Application.DisplayNoteIndicator, Application.ShowWindowsInTaskbar. Althought these attributes of the Application object don't do anything they allow setting and retrieval of the state. We could make a usable implementation for Application.DisplayNoteIndicator, the others though don't really seem to have any useful equivalent in the libreoffice world
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XApplication.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XApplication.idl b/oovbaapi/ooo/vba/excel/XApplication.idl index 866ab21decc0..baf646879e12 100644 --- a/oovbaapi/ooo/vba/excel/XApplication.idl +++ b/oovbaapi/ooo/vba/excel/XApplication.idl @@ -76,6 +76,9 @@ interface XApplication [attribute] long EnableCancelKey; [attribute] boolean DisplayFullScreen; [attribute] boolean DisplayScrollBars; + [attribute] boolean DisplayExcel4Menus; + [attribute] boolean DisplayNoteIndicator; + [attribute] boolean ShowWindowsInTaskbar; void setDefaultFilePath([in] string DefaultFilePath) raises(com::sun::star::script::BasicErrorException); |