Futurebasic/Language/Reference/exit case
EXIT structure statement
editEXIT <structure>
editStatements
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editEXIT CASE
EXIT DO
EXIT FOR
EXIT NEXT
EXIT UNTIL
EXIT WEND
EXIT WHILE
Revised
editMay 30, 2000 (Release 3)
Description
editWhen used inside a FOR/NEXT
loop, WHILE/WEND
conditional, DO/UNTIL
conditional, or in a SELECT CASE
structure, this statement causes the program to jump immediately to the line following the NEXT
, WEND
, UNTIL
, or END SELECT
statement. This is useful when, you wish to break out of a loop because a certain condition has been met. EXIT
is a safe way to do it.
Example:
FOR x = 1 TO 10
IF FN BUTTON THEN EXIT FOR
NEXT x
See Also
editFOR; While; Do; Select Case