Class ExternalCellInfo
- Namespace
- OfficeOpenXml.FormulaParsing.Ranges
- Assembly
- EPPlus.dll
Provides information about an external cell in an external range.
public class ExternalCellInfo : ICellInfo
- Inheritance
-
ExternalCellInfo
- Implements
- Inherited Members
Properties
Address
The cell address.
public string Address { get; }
Property Value
Column
The column of the cell
public int Column { get; }
Property Value
Formula
Formula. Always return Empty.String for external cells.
public string Formula { get; }
Property Value
Id
The cell id
public ulong Id { get; }
Property Value
IsExcelError
If the value of the cell is an Excel Error
public bool IsExcelError { get; }
Property Value
IsHiddenRow
If the row of the cell is hidden
public bool IsHiddenRow { get; }
Property Value
Row
The row of the cell
public int Row { get; }
Property Value
Tokens
Tokens for the formula. Not applicable to External cells.
public IList<Token> Tokens { get; }
Property Value
Value
The value of the current cell.
public object Value { get; }
Property Value
ValueDouble
The value as double of the current cell. Bools will be ignored.
public double ValueDouble { get; }
Property Value
ValueDoubleLogical
The value as double of the current cell.
public double ValueDoubleLogical { get; }
Property Value
WorksheetName
The name of the worksheet.
public string WorksheetName { get; }