Available in:
Apps (win)
Apps (char)
Reportwriter
RPC
Standalone PL
X
X
X
X
X
void parm([start[,count]]) int start,count or group parm([start[,count]]) int start,count
The parameters may also be directly assigned to group variables.
newfunc("hello",parm()); /* newfunc("hello",1,"There",56) */ newfunc(parm(2,1),parm(0,2)); /* newfunc(56,1,"There") */ newfunc(parm(),parm()); /* newfunc(1,"There",56,1,"There",56) */ [a,b,c] = parm(); /* a=1, b="There", c=56 */