Comparison Decisions
The Comparison components are simple logic comparison operators that yield True or False result events.
The Comparison components are:
- DoesNotEqual
- Equals
- GreaterThan
- GreaterThanOrEqualTo
- LessThan
- LessThanOrEqualTo
These components accept a single input which is compared against a value that you statically set during project design. Before the component input is connected to its source, the set value defaults to a type of double. When connected, the type changes to match that of the input.
Properties
Property | Description |
Name | The name of the expression. For example: Equals1 |
FullName | Includes the name of the automation. For example: StartMyDay.Equals1 |
OperandTypeName | A comparison value for the operator to use. |
SecondValueText | A text string representing the SecondValue. |
Events
Event | Description |
SolvedFalse | Triggered when the result of the comparison is False. |
SolvedTrue | Triggered when the result of the comparison is True. |
Previous topic String expressions Next topic Switch component