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 14:28:40 +0300
commitfe1438c1bee05f81039787c8c533bdecaa56e90b (patch)
tree8122402d3c3e1f8e88edf47ef746e98f3d70cb71 /oovbaapi
parent569d5dc085dd093c7a1bc3ff97118ce8d2acb44c (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
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 );