ELSEIF
Control flow statement for conditional branching
Syntax:
If expression Then
[statement(s)]
[ Elseif expression Then ]
[statement(s)]
[ Else ]
[statement(s)]
End IfRemark: EndIf (without blank) is also supported like in QB for backward compatibility.
Examples:
See example at If...Then.
Differences from QB:
- None
See also:
Back to Control Flow