WHILE and ENDWHILE
These commands will define a loop that will repeat while the Condition is true. Unlike the REPEAT command, the while command ensures the Condition is true before entering the loop. You are able to break from the loop at any time by using the EXIT command.

SYNTAX
WHILE Condition
Commands Go Here
ENDWHILE

RELATED INFO
Basic Commands
Glossary

EXAMPLE
LOOP Commands