Function
The function returns the required start parameter of the process from its command line.


Declaration
TEXT %GetStartParametersNr(
   INT in nr
)
Parameters
nr
The number of the required start parameter
Description
The function returns the required start parameter of the process from its command line.
Example
INT _num
TEXT _txt
 
_num := %GetStartParametersNum()
FOR _i = 1 TO _num DO_LOOP
  _txt := %GetStartParametersNr(_i)
  ..
END_LOOP
Napíšte komentár