AddCustomFunction
function AddCustomFunction(fCustom: () = null): void
Description
Creates a new custom function. The description of the function parameters and result is specified using JSDoc. The @customfunction tag is required in JSDoc. Parameters and results can be specified as the number / string / bool / any / number[][] / string[][] / bool[][] / any[][] types. Parameters can be required or optional. A user can also set a default value.
Parameters
- fCustom
()
null A new function for calculating.
Returns
void