endif
Other versions of this page are also available for the following:
8/28/2008
This command marks the end of a conditional block of script commands started with a previous if command.
Syntax
endif
Parameters
None.
Remarks
The following code example uses the endif command to mark the end of a compound if statement:
if string "%CCA_CURRENTLANGUAGE%" == "en-US"
echo "Hello World"
elseif string "%CCA_CURRENTLANGUAGE%" == "fr-CA"
echo "Bonjour le Monde"
else
echo "Hello"
endif