diff options
author | Noel Power <noel.power@suse.com> | 2013-05-14 12:07:43 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-05-15 09:52:30 +0100 |
commit | fbd74ed44cd011ebab95bb4bc4eb6b15c1272c43 (patch) | |
tree | 9c853f4a88350ed2f7b60d81e3e2756d2f111518 /oovbaapi | |
parent | 9c2a1cb4351c8f80a27b7ba413ad382368387425 (diff) |
make some vba Name object attributes read/write and add test document
Change-Id: Ibd12835cc5368080a302b3b8d7c6f52ccc434e3c
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XName.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/oovbaapi/ooo/vba/excel/XName.idl b/oovbaapi/ooo/vba/excel/XName.idl index dc6ba1c1ee09..d46dc14657d7 100644 --- a/oovbaapi/ooo/vba/excel/XName.idl +++ b/oovbaapi/ooo/vba/excel/XName.idl @@ -37,10 +37,10 @@ interface XName [attribute] string NameLocal; [attribute] boolean Visible; [attribute] string Value; - [attribute, readonly] string RefersTo; - [attribute, readonly] string RefersToLocal; - [attribute, readonly] string RefersToR1C1; - [attribute, readonly] string RefersToR1C1Local; + [attribute] string RefersTo; + [attribute] string RefersToLocal; + [attribute] string RefersToR1C1; + [attribute] string RefersToR1C1Local; [attribute, readonly] XRange RefersToRange; void Delete( ); |