IF and ENDIF
This command will allow your program to perform a sequences of commands based on the result of a condition. If the condition is true, the commands immediately following the IF command are performed. If the condition is false, all commands before the ENDIF command are skipped.

SYNTAX
IF Condition
Command Go Here for condition True
ENDIF

RELATED INFO
Basic Commands
Glossary

EXAMPLE
IF THEN Commands