ConditionElse
[ Interface ]
export interface ConditionElse {
else: Action[];
showThenActions?: boolean;
}
Else part of a condition.
Properties
Name | Type | Description |
---|---|---|
else | Action[] | List of actions to be performed if previous If or ElseIf expressions are false. |
showThenActions [ optional ] | Defines whether or not the list of actions in 'else' should be displayed in engineering. |
Available from version 1.12 |