vcElseIfScope
ElseIf scopes can be added in If statements between ThenScope and ElseScope. The first ElseIf scope whose condition returns True will be executed. If none of the ElseIf scopes' conditions return True, the ElseScope of statements will be executed.
Note that ElseIf scopes only work with robot programming. Inherits: vcScopeProperties
Name | Type | Access | Description |
Condition |
Expression |
RW | Defines an expression that when evaluated returns a True or False value.
A True value means the If statement will execute this scope. A False value means the If statement will not execute this scope. |