Logical operators are in accordance with the C#-Notation used for logical operations in the formulation of conditions etc.. The following operators can be used:
- &&
Logisches AND (Conjunction)
- ||
Logisches OR (Disjunction)
- ^
Logisches XOR (Exklusive Disjunktion)
- !
Logische NOT (negation)
BooleanValue = BooleanTerm1 Operator BooleanTerm2
BooleanValue = !BooleanTerm1
Below are all the properties / arguments of the term in order listed.
| Name | Type | Art | M | In | R | Description |
|---|
| Value | Boolean | Return | | | The | Return value of the logical operation |
| BooleanTerm1 | Boolean | Term | ● | | In | Linker Operand |
| BooleanTerm2 | Boolean | Term | ● | | In | Right Operand |
Legend: No Type = Indeterminate type, see description; M = Property is required (mandatory); In = Verkettbares Element; R = Datenrichtung I = In, O = Out, I/O = In/Out