Logic For
This task allows you to run upto 3 tasks within a For 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:
For( Start Value , End Value,
Increment Value)
{
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)
}