[Overview][Types][Classes][Procedures and functions][Index] Reference for unit 'CmdLine' (#Pkg)

TOptionFlag

Option flags

Declaration

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.

);