Processing
ParamCount:number; |
Function PARAMCOUNT returns the number of parameters passed to the program on the command line. |
ParamStr(Index: number): string; |
Function PARAMSTR returns the parameter from the command line that corresponds to INDEX, or In EscapeE the INDEX values 0 and 1 have special meanings: This command line contains the file name parameter "Table.RS2" followed by the name parameter of the data file used to fill the table "Sales.csv". (/PDF and /X are EscapeE switches – see EscapeE Help.) |
Halt(N:number); |
Procedure In Windows RS2 JIT compiler, HALT terminates program execution and returns the exit code N. In EscapeE, HALT(1) is used to signal 'end of file'. Column example, Rotate example, Line example, Table example: Basic, Table example: Variable data. |
Sleep(Millisecs:number); |
Procedure SLEEP suspends processing for specified period. |
Pipe(PipeName,Query:string):string; |
Function The RS/2 function PIPE provides inter-process communication on a local computer to another program that implements the pipe server named PIPENAME. For example, to send database queries to Microsoft® SQL Server®. See also NAMESERVER.ZIP in the rs2 demo files. |
WriteLn(P1 [, P2, ...,Pn ] ); |
Procedure WriteLn writes lines of text to the console window. In EscapeE this is the LOG window. (To write to a file see WRITELINE procedure.) |