summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-06-17 13:31:48 +0200
committerEike Rathke <erack@redhat.com>2016-06-17 13:38:40 +0200
commitdc6bf6c8ae94fd89f30e39d63dfe02fdb042e98d (patch)
treeeb8300b048767ed8070918c6d008d4b5186b6d43 /offapi
parent011128aa9493a680c3e9da6d074f125a90ec455c (diff)
Resolves: tdf#91365 use underlying numeric value if available [API CHANGE]
... at least for setting the cell content. There are more places where the numeric value could be transported but all Data Pilot pivot stuff is based on text strings :-/ This appends a double Value member to com::sun::star::sheet::MemberResult Change-Id: Ia9e8ac47d0877bd4a59a69d5921ce4ea082e8a69
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/sheet/MemberResult.idl9
1 files changed, 9 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/MemberResult.idl b/offapi/com/sun/star/sheet/MemberResult.idl
index 8cb4c2247702..7de14f3169c3 100644
--- a/offapi/com/sun/star/sheet/MemberResult.idl
+++ b/offapi/com/sun/star/sheet/MemberResult.idl
@@ -46,6 +46,15 @@ struct MemberResult
*/
long Flags;
+
+ /** the underlying numeric value of the field <b>if</b> Flags
+ indicate so by having
+ com::sun::star::sheet::MemberResultFlags::NUMERIC set.
+
+ May be NaN if value is not available or unknown.
+ */
+ double Value;
+
};