Futurebasic/Language/Reference/exit case

EXIT structure statement

edit

EXIT <structure>

edit

Statements

edit
✔ Appearance ✔ Standard ✔ Console

Syntax

edit

EXIT CASE
EXIT DO
EXIT FOR
EXIT NEXT
EXIT UNTIL
EXIT WEND
EXIT WHILE

Revised

edit

May 30, 2000 (Release 3)

Description

edit

When 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

edit

FOR; While; Do; Select Case