Next
Skips the current iteration in an Iterate activity and proceeds the execution with the next iteration.

Properties
| Name | Description | 
|---|---|
| Condition | Condition which determines if the activity will be evaluated. If empty it assumes True. | 
Usage
This activity can be only used inside the Iterate or Time Loop activities and it is equivalent to continue in a for loop, e.g in C#:
for (int i = 0; i < 10; i++)
{
    // ...
    continue;
    // ...
}
We can use the property Condition by providing a boolean expression or variable to determine if the should move to next iteration.
If not specified anything to Condition, it assumes True by default.