Conditional instruction
Conditional statements in the template language allow blocks of text to be included based on a logical statement. This conditional inclusion of text is implemented using the if--else-end pattern found in most programming languages.
The conditional statement is defined as follows:
##If statement ##Then ... Text to be included if the statement is true ... ##ElseIf statement ##Then ... Text to be included if the statement is true ... ##Else ... Text to be included if the statement is false ... ##EndIf
The
##ElseIf
and ##Else
portions of the conditional statement are optional and may be omitted.Provide Feedback