###Keyword###
ContinueLoop

###Description###
Continue a While/Do/For loop.

###Syntax###
<b>ContinueLoop</b> [level]


###Parameters###
@@ParamTable@@
level
	[optional] The level of the loop to restart. The default is 1 (meaning the current loop).
@@End@@

###Remarks###
<a href="ContinueLoop.htm">ContinueLoop</a> will continue execution of the loop at the expression testing statement (that is the While, Until or Next statement).

A negative level or zero value has no effect.

Even though any program that uses <a href="ContinueLoop.htm">ContinueLoop</a> can be rewritten using If-ElseIf-EndIf statements, ContinueLoop can make long scripts easier to understand.
Be careful with While/Do loops; you can create infinite loops by using <a href="ContinueLoop.htm">ContinueLoop</a> incorrectly.


###Related###
ExitLoop, For, While, Do


###Example###
@@IncludeExample@@
