Spread.Sheets Documentation
AsyncFunction Method
GC.Spread.CalcEngine Namespace > Functions type : AsyncFunction Method
The name of the function.
The minimum number of arguments for the function.
The maximum number of arguments for the function.
The description of the function.
Represents an abstract base class for defining asynchronization functions.
Syntax
var value; // Type: any
value = GC.Spread.CalcEngine.Functions.AsyncFunction(name, minArgs, maxArgs, description);
function AsyncFunction( 
   name : string,
   minArgs : number,
   maxArgs : number,
   description : 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.
description
The description of the function.
See Also

Reference

Functions type