GetArgCount()

Namespace ›› System ›› MfParams ›› Methods ››
Parent Previous Next

GetArgCount()

OutputVar := MfParams.GetArgCount(args*)

GetArgsCount(args*)

Get the count of arguments in vardic parameter args*.

Parameters

args*

The vardic args object to  get the count for

Returns

Returns the count of the args* as integer. If args are empty then 0 is returned.

Remarks

Static Method

Example

MyFunction(args*)
{
   cnt := MfParams.GetArgCount(args*)

   ; some other code
}