TTokenLambdaCallName Class
This token is used when you call a name like "=MyName(5)" and MyName has a lambda function.
Note that if a cell has the expression like "=Lambda(x,x)" then you will just get a simple TTokenFunction with a name of "Lambda". This token only appears when using a name as a user-defined function.
Syntax
Unit: FlexCel.Core
TTokenLambdaCallName = class(TToken);
Constructors
Name |
Description |
Create |
Creates a new TTokenLambdaCallName token.
|
Properties
Name |
Description |
ArgumentCount |
The number of arguments for the function. The last argument is the Name to be called. For example the function "=MyName(4,3) will have 3 arguments: 4, 3, and the name MyName.
|