[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Check whether a certain switch is present on the command-line.
Source position: sysstrh.inc line 251
function FindCmdLineSwitch( |
const Switch: string; |
const Chars: TSysCharSet; |
IgnoreCase: Boolean |
):Boolean; |
const Switch: string; |
IgnoreCase: Boolean |
):Boolean; |
const Switch: string |
):Boolean; |
FindCmdLineSwitch will check all command-line arguments for the presence of the option Switch. It will return True if it was found, False otherwise. Characters that appear in Chars (default is SwitchChars) are assumed to indicate an option (switch). If the parameter IgnoreCase is True, case will be ignored when looking for the switch. Default is to search case sensitive.
None.
|
Characters which start a command-line switch |