ConditionElseIf

[ Interface ]

export interface ConditionElseIf {
    elseif: Expression[];
    then: Action[];
    showThenActions?: boolean;
}

ElseIf part of a condition.

Properties

Name

Type

Description

elseif

Expression[]

ElseIf expression

then

Action[]

List of actions to be performed if the ElseIf expression is true.

showThenActions [ optional ]

boolean

Defines whether or not the list of actions in 'then' should be displayed in engineering or not.

ConditionElseIf 1:

Available from version 1.12