Programming Reference / Program / Loop Control


Loop Control is an operation instruction that allows you control the block execution within the boundary of the Repeat Loop instruction

Example

Item Name Description
A Next loop iteration When this block is encountered, the execution immediately returns to the first block in the Repeat Loop boundary and the Increment value will increment by 1.
B Break out of loop When this block is encountered, the execution immediately skips the remaining blocks in the Repeat Loop boundary and resumes execution at the first block below the Repeat Loop boundary
C Bottom Boundary When execution reaches the bottom boundary of the Repeat Loop instruction the execution immediately returns to the first block in the Repeat Loop boundary and the Increment value will increment by 1.