Count Loop
Command description
Iterate from the Start Value to the End Value, inclusively, using the specified Step Value. Nested loops are supported.
Command Input Parameters
| input parameters | Input parameter type | Description |
|---|---|---|
| Start Value | int | Start looping from this value |
| End Value | int | Stop at (including) this value |
| Step Value | int | Amount added to the index after each iteration |
For example, a start value of 1, end value of 10, and increment of 1 produces ten iterations.
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|---|---|
| Index | int | Current loop value |
Example
Repeatedly check whether the image exists. The line execution sequence is 1 -> 2 -> 3 -> 2 -> 3 -> 2 -> 3.