Share via


endif (Windows Embedded CE 6.0)

1/6/2010

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

See Also

Reference

Conditional Expressions