◄Summary► ◄Details► ◄Example► ◄Contents► ◄Index► ◄Back► ────────────────────────────────────────────────────────────────────────────── IF {condition | TYPEOF ctlname IS controltype} THEN [statementblock-1] [ELSEIF TYPEOF ctlname IS controltype THEN [statementblock-2]]... [ELSE [statementblock-n]] END IF Usage Notes ■ The IF...END IF statement provides the same type of conditional processing without the TYPEOF option. See: ◄IF...END IF Statement► ■ The ELSE and ELSEIF blocks are optional. You can have as many ELSEIF clauses as you want in a block IF. Any of the statement blocks can contain nested block IF statements.