Conditionally executes a group of statements, depending on the value of an expression.

If condition Then statements [Else elsestatements ] 
' Or, you can use the block form syntax: 
Ifcondition Then
   [statements]
[ElseIfcondition-nThen
   [elseifstatements]] . . .
[Else
   [elsestatements]]
End If

Expand imageArguments

Expand imageRemarks

Expand imageRequirements