GetCommandLine( )

Action: Returns the command line used to launch KiXtart.
 
Syntax: GetCommandLine (Mode)
 
Parameters:

Mode

Optional integer parameter indicating how the command line should be returned. Possible values:

0     Return command line as a single, unprocessed, string (default)
1     Return command line as an array of strings

Returns: A string or array containing the command line.
 
Example:

$CL = GetCommandLine(1)
FOR EACH $Arg in $CL
   ? $Arg
NEXT