Spread.Sheets Documentation
Function Method
GC.Spread.CalcEngine Namespace > Functions type : Function Method
The name of the function.
The minimum number of arguments for the function.
The maximum number of arguments for the function.
The description object of the function.
Represents an abstract base class for defining functions.
Syntax
var value; // Type: any
value = GC.Spread.CalcEngine.Functions.Function(name, minArgs, maxArgs, functionDescription);
function Function( 
   name : string,
   minArgs : number,
   maxArgs : number,
   functionDescription : object
) : any;

Parameters

name
The name of the function.
minArgs
The minimum number of arguments for the function.
maxArgs
The maximum number of arguments for the function.
functionDescription
The description object of the function.
See Also

Reference

Functions type