In This Topic
Determines whether the function accepts array values for the specified argument.
Syntax
var instance = new GC.Spread.CalcEngine.Functions.Function(name,
minArgs,
maxArgs,
functionDescription,
functionDescription.description,
functionDescription.parameter,
functionDescription.parameter.name,
functionDescription.parameter.repeatable,
functionDescription.parameter.optional);
var value; // Type: boolean
value = instance.acceptsArray(argIndex);
function acceptsArray(
: number
) : boolean;
Parameters
- argIndex
- Index of the argument.
Return Value
true if the function accepts array values for the specified argument; otherwise, false.
See Also