ELSEIF

Top  Previous  Next

Syntax

ELSEIF condition

Description

Reserved word. Used in IF statements and IF blocks.

Parameters

Condition - Condition to test for continuing execution.

Return value

None

Remarks

See Also: IF

Example usage

IF name = "Jerry"
       pay = "7.55"
ELSEIF name = "Tom"
       pay = "9.55"
ELSEIF name = "Lisa"
       pay = "10.34"
ENDIF