ConditionElseIf
[ Interface ]
export interface ConditionElseIf {
elseif: Expression[];
then: Action[];
showThenActions?: boolean;
}
ElseIf part of a condition.
Properties
Name | Type | Description |
---|---|---|
elseif | ElseIf expression | |
then | Action[] | List of actions to be performed if the ElseIf expression is true. |
showThenActions [ optional ] | Defines whether or not the list of actions in 'then' should be displayed in engineering or not. |
Available from version 1.12 |