warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
numargs
warning
This function starts with a lowercase letter.
Description
Get the number of arguments passed to a function.
Examples
SomeFunction(...)
{
printf("numargs(): %i", numargs());
}
public OnFilterScriptInit()
{
SomeFunction(1, 2, 3);
}
// Output: "numargs(): 3"
// Because 3 parameters (1, 2, 3) were passed.