TTokenFunction.Create Constructor
Overloads
TTokenFunction.Create(string, Integer)
Creates a new function token for internal (not user-defined) functions.
Syntax
Unit: FlexCel.Core
constructor TTokenFunction.Create(const aFunctionName: string; const aArgumentCount: Integer);
Parameters
<-> |
Parameter |
Type |
Description |
const |
aFunctionName |
string |
Name of the function. |
const |
aArgumentCount |
Integer |
Number of arguments for this function. Note that if the function has a fixed number of arguments, this parameter is ignored. |
See also
TTokenFunction.Create(string, Integer, Boolean)
Creates a new function token. It can be an internal or a user-defined function.
Syntax
Unit: FlexCel.Core
constructor TTokenFunction.Create(const aFunctionName: string; const aArgumentCount: Integer; const aIsUserDefined: Boolean);
Parameters
<-> |
Parameter |
Type |
Description |
const |
aFunctionName |
string |
Name of the function. |
const |
aArgumentCount |
Integer |
Number of arguments for this function. Note that if the function has a fixed number of arguments, this parameter is ignored. |
const |
aIsUserDefined |
Boolean |
If true, the function is used defined, not built-in in Excel. Note that some built-in functions from Excel 2003 like EOMonth, while available in Excel, are implemented as user-defined functions (they were available in ToolPacks like the Analysis ToolPack). |
See also