$undef (compiler directive)

This compiler directive enables you to undefine symbols previously defined with $define.

Example:

$define Test
$ifdef Test
  ; this code is executed
$endif
$undef Test
$ifdef Test
  ; this code is not executed
$endif

See Also
Compiler directives