Aide:ContinueCase.txt
De Wiki AutoIt Français
Document original V3.3.6.1 :
###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 ContinueCase will tell AutoIt to stop executing the current case and start executing the next case.
Trying to execute ContinueCase 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@@
Document traduit V3.3.6.1 :
###Keyword###
ContinueCase
###Description###
Abandonne le "case" en cours et passe au prochain "case" dans la condition Select ou Switch.
###Syntax###
<b>ContinueCase</b>
###Parameters###
Aucun.
###Remarks###
Normalement, dans une condition Select ou Switch, un "case" prend fin lorsque la prochaine déclaration "case" est rencontrée. Exécuter ContinueCase dira à AutoIt d'arrêter de poursuivre le "case" en cours et d'exécuter le prochain "case".
Essayer d'exécuter un "case" hors d'une condition Select ou Swtich causera une erreur fatale.
###Related###
<a href="Select.htm">Select...EndSelect</a>, <a href="Switch.htm">Switch...EndSwitch</a>
###Example###
@@IncludeExample@@
Traducteur : jbnh