###Keyword###
ContinueCase

###Description###
Abort the current case and continue a case into the next case in a Select or Switch block.

###Syntax###
<b>ContinueCase</b>


###Parameters###
None.

###Remarks###
Normally in a Select or Switch block, a case ends when the next Case statement is encountered. Executing the <a href="ContinueCase.htm">ContinueCase</a> will tell AutoIt to stop executing the current case and start executing the next case.

Trying to execute <a href="ContinueCase.htm">ContinueCase</a> outside of a Select or Switch will cause a fatal error.


###Related###
<a href="Select.htm">Select...EndSelect</a>, <a href="Switch.htm">Switch...EndSwitch</a>


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