Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This command marks the end of a conditional block of script commands started with a previous if command.
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
See Also
Send Feedback on this topic to the authors