What is a Condition?
Conditions allow you to define the process flow dependent on the evaluation of certain expressions.
In such an expression, you can compare auto fields, variables, the current value of a widget, or a given constant with each other and use the result to decide whether the process continues in one direction or the other.
Alternatively, you may decide to continue the process only if a condition is true and decide to leave out the alternative, which will stop the process at that point.
Add a condition
Double-clicking on the shape adds a new condition. Alternatively, click on the plus icon on the right.
An AND condition is created by default.
Toggle between AND and OR (not XOR) condition using the toggle switch.
Operators
Select the operator of the condition by the drop-down.
== | value1 is equal to value2 (not checking the data type, only the value) |
!= | value1 is not equal to value2 |
< | value1 is less value2 |
> | value1 is greater than value2 |
<= | value1 is less or equal to value2 |
>= | value1 is greater or equal to value2 |
isSet | variable has a value |
isNotSet | variable has not a value |