IFOPT directive (Object Pascal)
Go Up to Object Pascal Compiler Directives (List) Index
Type |
Conditional compilation |
Syntax |
{$IFOPT switch} |
Remarks
Compiles the Object Pascal source code that follows it if switch is currently in the specified state. switch consists of the name of a switch option, followed by a + or a - symbol. For example,
{$IFOPT R+} Writeln('Compiled with range-checking'); {$ENDIF}
compiles the Writeln statement if the $R option is currently active.