summaryrefslogtreecommitdiff
path: root/offapi/com/sun
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun')
-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;
+
};