Interface IAdditionalData
This interface should be implemented by all token classes that needs some additional data to be read after all formula tokens.
Namespace: Syncfusion.XlsIO.Parser.Biff_Records.Formula
Assembly: Syncfusion.XlsIO.Portable.dll
Syntax
public interface IAdditionalData
  Properties
AdditionalDataSize
Returns size of the additional data. Read-only.
Declaration
int AdditionalDataSize { get; }
  Property Value
| Type | 
|---|
| System.Int32 | 
Methods
ReadArray(DataProvider, Int32)
Reads additional token data that is placed after all formula tokens.
Declaration
int ReadArray(DataProvider provider, int offset)
  Parameters
| Type | Name | Description | 
|---|---|---|
| DataProvider | provider | Object that provides access to the data.  | 
      
| System.Int32 | offset | Offset to the additional token data.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Int32 | Final offset in the data array.  |