Logic WHILE
This task allows you to run upto 3 tasks within a While loop. The
number of loops is defined by the start value, end value and
increment. Optionally, you can set Continue or Break
Conditions.
Continue skips the next steps in current loop and
moves to next loop.
Break exits the For loop completely.
The flow diagram example:
While( Condition is True
)
{
Continue Statement (optional)
Run Task
1
Continue/Break Statements (optional)
Run Task 2
(optional)
Continue/Break Statements (optional)
Run Task 3
(optional)
Break Statement (optional)
}