Continue
Continue command is used to terminate a Loop for one time. Note the difference between Continue
and Break, Break jump out of whole loop and don’t enter again. Continue jump out of loop for one
time and enter the loop in next time.
The gramma of Continue should be formal. Continue can only be used inside Loop and there must
have an If command before Continue. When condition in If is satisfied, then execute Continue to
jump out of the loop for one time. Otherwise, an error message will pop up.
Click【Remove】to delete the Continue command.
Figure 11.10 Continue