ITokenList Interface
A list of tokens which create a formula.
Syntax
Unit: FlexCel.Core
ITokenList = interface(IInterface);
Methods
| Name |
Description |
| Add |
Adds a new token to the end of the list.
|
| Clear |
Removes all tokens from the list.
|
| Insert |
Inserts a specific token into the list at a given position (0 based).
|
| RemoveAt |
Removes the token at index.
|
| GetEnumerator |
Returns the enumerator for the class.
|
Properties
| Name |
Description |
| Count |
The number of tokens in the list.
|
| Item[const index] |
Gets or sets the token at the given index.
|
| IsArrayFormula |
If true, the tokens in this list refer to an array formula.
|
| Span |
This property only applies if IsArrayFormula is true. It has the range for the array formula.
|