summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-02-19 13:41:47 +0100
committerEike Rathke <erack@redhat.com>2016-02-20 00:39:25 +0100
commitda6d813222e81470fac38282d1cebd1f858ba925 (patch)
treea0d4fcbce3db7066e49a8b2e08f5f09b7773c856
parentfb3f66c20f79f178ba0f53b850ed0af0d1c5b2ff (diff)
add [optional, property] boolean Wildcards, tdf#72196
Change-Id: I7105bdeafe6a1b8bf24e88f7a00d5eb3d23df15a
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
index dca11f48d8dc..bdb784e4fb36 100644
--- a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
+++ b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
@@ -124,6 +124,10 @@ published service SpreadsheetDocumentSettings
/** specifies whether regular expressions in formulas are enabled,
e.g., for functions which look up spreadsheet contents.
+
+ <p>RegularExpressions and Wildcards are mutually exclusive, only
+ one can have the value `TRUE`. Internally, if both are true then
+ Wildcards takes precedence over RegularExpressions.</p>
*/
[property] boolean RegularExpressions;
@@ -208,6 +212,18 @@ published service SpreadsheetDocumentSettings
*/
[readonly,optional, property] boolean IsRecordChangesProtected;
+
+ /** specifies whether wildcards in formulas are enabled,
+ e.g., for functions which look up spreadsheet contents.
+
+ <p>Wildcards and RegularExpressions are mutually exclusive, only
+ one can have the value `TRUE`. Internally, if both are true then
+ Wildcards takes precedence over RegularExpressions.</p>
+
+ @since LibreOffice 5.2
+ */
+ [optional, property] boolean Wildcards;
+
};