Page 1 of 1

Number of parameters set calling a procedure

Posted: Mon Jun 03, 2013 9:30 pm
by Josh
Would be nice to have a possibility, to get the number of parameters the caller of a procedure has set.

Code: Select all

Procedure Test (Par1, Par3=99)

  Debug NumberOfParametersSet() ;= 1

EndProcedure

Test (1234)