vcProcessIfStatement
A vcProcessIfStatement is a process statement that execute one of two scopes of statements based on a condition. If the condition is true, the statement executes its ThenScope of statements. If the condition is false, the statement executes is ElseScope of statements. If condition is invalid neither ThenScope nor ElseScope are executed.
Inherits: vcStatement
Properties
Name | Type | Access | Description |
Condition | Expression (boolean) | RW |
Condition expression to evaluate when the statement is executed. See also Process Statement Expressions. |
ElseScope | vcScope | R | Scope to execute when Condition evaluates to False. |
ThenScope | vcScope | R | Scope to execute when Condition evaluates to True. |