operator
property determines which boolean logic is employed when it is evaluated. It can have any one of the following values:and
: The criteria group's criteria and nested criteria groups will be and
ed together when evaluated. This means that all criteria and nested criteria groups for a criteria group with operator
equal to and
must be true
for it to evaluate to true
itself.or
: The criteria group's criteria and nested criteria groups will be or
ed together when evaluated. This means at least one of a criteria group's criteria or nested criteria groups must be true
for it to evaluate to true
itself.xor
: The criteria group's criteria and nested criteria groups will be xor
ed together when evaluated. This means only one of a criteria group's criteria or nested criteria groups can be true
for it to evaluate to true
itself.false
, regardless of its operator value.