else if
Execute the associated action lines if the specified condition is satisfied.
Name | Description | Type | Modifier |
---|---|---|---|
condition | Expression that evaluates to a Boolean True or False, and sets the condition upon which associated action lines are or are not executed, respectively. | String | None |
None
This action may be used within the following project items: test modules and user-defined actions.
format hour minute second am/pm
get system time 24 h m s
 
condition
if #h<12
 
text
report Good morning
 
condition
else if #h>12 and h<18
 
text
report Good afternoon
 
else
 
text
report Good evening
 
end if