Description
The IfThenElseGen Generator evaluates a Boolean referenced value and select one of two referenced values based on the True or False result:
- if attribute1 then
- attribute2
- else
- attribute3
in detail:
- if (ifCondition) then
- thenCondition
- else
- elseCondition
Parameters
The following parameters may be configured for the IfThenElseGen Generator. Items with an asterisk* are required.
- ifCondition* - The value of the ifCondition that should evaluated to a Boolean (true or false).
- thenCondition* - The value of the thenCondition that will be returned when the ifCondition is true.
- elseCondition* - The value of the elseCondition that will be returned when the ifCondition is false.