Online documentation, manuals and tutorials
< All Topics
Print

Compare

Description

Compares expressions depending on the operator and if the result is true Flow execution continues through True output, otherwise False output is used.

Properties

Specific

A

EXPRESSION (any)

Expression on the left side of the comparison.

B

EXPRESSION (any)

Expression on the right side of the comparison.
It is not used if the operator is NOT.

C

EXPRESSION (any)

This expression is used only in the case of the BETWEEN operator, then it is checked whether A >= B and A <= C.

Operator

Enum

It is possible to use one of the following operators:

  • = – A is equal to B, i.e. A == B
  • < – A is less than B, i.e. A < B
  • > – A is greater than B, i.e. A > B
  • <= – A is less or equal to B, i.e. A <= B
  • >= – A is greater or equal to B, i.e. A >= B
  • <> – A is different then B, i.e. A != B
  • NOT – A is not true, i.e. !A
  • AND – both A and B are true, i.e. A && B
  • OR – either A or B is true, i.e. A || B
  • XOR – either A or B is true, but not both, A ^^ B
  • BETWEEN – A is between B and C, i.e. A is greater then or equal to B and A is less then or equal to C, i.e. A >= B AND A <= C

Inputs

seqin

SEQ | OPTIONAL

A standard sequence input.

Outputs

seqout

SEQ | OPTIONAL

A standard sequence output.

True

SEQ | OPTIONAL

Output that will be used to continue execution of the Flow if the value of the expression is true.

False

SEQ | OPTIONAL

Output that will be used to continue execution of the Flow if the value of the expression is false.

Page content