Keyword Reference

ExitLoop

While/Do/For ループを終了します。

ExitLoop [level]

 

パラメータ

level [オプション] 抜けるループの階層。デフォルトは1 (つまり現在のループを抜ける)。

 

注意

マイナス、0の階層は効果がありません。

ExitLoopはWhile, Do or Forを終了させます。
ExitLoopはループが回っているかまたループ内にエラーがないかを調べる際に有効です。

 

関連

ContinueLoop, Exit, For, Do, While

 


$sum = 0
While 1 ;ExitLoopが呼ばれるまで無限ループ
    $ans = InputBox("Running total=" & $sum, _
        "   Enter a positive number.  (A negative number exits)")
    If $ans < 0 Then ExitLoop
    $sum = $sum + $ans
WEnd
MsgBox(0,"The sum was", $sum)