diff options
author | Daniel Rentz <dr@openoffice.org> | 2010-07-19 23:54:06 +0200 |
---|---|---|
committer | Daniel Rentz <dr@openoffice.org> | 2010-07-19 23:54:06 +0200 |
commit | cf2e818a242c1d84e313a054625905883ecf583e (patch) | |
tree | 388074d89ef31f34489683435f1bdaf32d6519a0 /oovbaapi | |
parent | 1b86e85b77cdd0d24bac0182b1b319672441df8c (diff) |
mib17: add Application.Visible
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/XApplicationBase.idl | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/oovbaapi/ooo/vba/XApplicationBase.idl b/oovbaapi/ooo/vba/XApplicationBase.idl index 7f59ddb75247..d9d32e02f2ce 100644 --- a/oovbaapi/ooo/vba/XApplicationBase.idl +++ b/oovbaapi/ooo/vba/XApplicationBase.idl @@ -24,21 +24,15 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ + #ifndef __ooo_vba_XApplicationBase_idl__ #define __ooo_vba_XApplicationBase_idl__ -#ifndef __com_sun_star_uno_XInterface_idl__ -#include <com/sun/star/uno/XInterface.idl> -#endif - -#ifndef __ooo_vba_XHelperInterface_idl__ #include <ooo/vba/XHelperInterface.idl> -#endif module ooo { module vba { -//============================================================================= - +//============================================================================= interface XApplicationBase { @@ -47,8 +41,9 @@ interface XApplicationBase [attribute] boolean ScreenUpdating; [attribute] boolean DisplayStatusBar; [attribute] boolean Interactive; + [attribute] boolean Visible; + [attribute, readonly] string Version; - //mbn [attribute, readonly] any VBE; [attribute, readonly] any VBProjects; @@ -61,6 +56,8 @@ interface XApplicationBase void Undo(); }; +//============================================================================= + }; }; #endif |