summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-04-17 00:35:56 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-31 21:52:48 +0300
commitd5a356944964f9c4d4aaa4c8d109b2497fd26428 (patch)
treec1d814b24e115a9889eab0e7a348573b01e1ff25 /oovbaapi
parent4808a2e5102cbf75612d7489d51e51941039d5ab (diff)
Add window geometry attributes, too, to ooo.vba.word.XApplication
Like the other similar attributes and methods added lately, they just forward to the corresponding attributes of the "active window". Whether setting and retrieving such then actually does something useful or not I don't know. My main concern is that Automation and COM clients at least won't complain and abort because of unimplemented APIs. Change-Id: Ia8d22e3137d314268ac6771bb355e9f0686f52dc (cherry picked from commit fe1438c1bee05f81039787c8c533bdecaa56e90b)
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/word/XApplication.idl4
1 files changed, 4 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/XApplication.idl b/oovbaapi/ooo/vba/word/XApplication.idl
index 52ece92a4178..4b0f4f4e9a2a 100644
--- a/oovbaapi/ooo/vba/word/XApplication.idl
+++ b/oovbaapi/ooo/vba/word/XApplication.idl
@@ -35,6 +35,10 @@ interface XApplication : XConnectable
[attribute] boolean DisplayAutoCompleteTips;
[attribute] long EnableCancelKey;
[attribute] long WindowState;
+ [attribute] long Width;
+ [attribute] long Height;
+ [attribute] long Left;
+ [attribute] long Top;
any CommandBars( [in] any Index );
any Documents( [in] any Index );