-
Notifications
You must be signed in to change notification settings - Fork 1
Not Operator
Martin Danielsson edited this page Jul 23, 2015
·
2 revisions
Negates a boolean expression. If passed a true
value, will return false
, and vice versa.
What | Type |
---|---|
Syntax | Not(boolExpression) |
boolExpression |
bool |
Return type | bool |
Example: Not(IsEmpty($field))
, especially useful for filtering:
<SourceFilters>
<SourceFilter>Not(IsEmpty($field))</SourceFilter>
</SourceFilters>