Defines an If action component.
This component helps handling decisions to control the actions workflow.
It tests the result of the given condition property. You can use the out
expression in the condition, where out
holds the parent action returned data. If the condition is verified, it will execute the next action underneath.
You can use the Negate property to test the reverse condition. This is useful for an ‘if then else’ type of flow. For example :
• if mycondition
• Do some stuff
• if not mycondition
• Do some other stuff
Name | Description |
---|---|
Condition | The expression to be tested. |
Negate | Negate the condition, useful for ‘else’ conditions. |
Comment | Describes the object comment to include in the documentation report. This property generally contains an explanation about the object. |
Is active | Defines whether the component is active. |