[Overview][Types][Classes][Procedures and functions][Index] |
Option flags
Source position: cmdline.pas line 207
type TOptionFlag = ( |
||
ofStopScan, |
|
When the scanner encounters an option with this flag it stops. Following options are not parsed and no required option detection is done. |
ofOnlyOnce, |
|
If, during scan, an option with this flag is detected more than once an exception is raised. |
ofRequired |
|
If, during scan, an option with this flag is not detected an exception is raised. |
); |