Show / Hide Table of Contents

Class ExternalCellInfo

Provides information about an external cell in an external range.

Inheritance
object
ExternalCellInfo
Implements
ICellInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: OfficeOpenXml.FormulaParsing.Ranges
Assembly: EPPlus.dll
Syntax
public class ExternalCellInfo : ICellInfo

Properties

Address

The cell address.

Declaration
public string Address { get; }
Property Value
Type Description
string

Column

The column of the cell

Declaration
public int Column { get; }
Property Value
Type Description
int

Formula

Formula. Always return Empty.String for external cells.

Declaration
public string Formula { get; }
Property Value
Type Description
string

Id

The cell id

Declaration
public ulong Id { get; }
Property Value
Type Description
ulong

IsExcelError

If the value of the cell is an Excel Error

Declaration
public bool IsExcelError { get; }
Property Value
Type Description
bool

IsHiddenRow

If the row of the cell is hidden

Declaration
public bool IsHiddenRow { get; }
Property Value
Type Description
bool

Row

The row of the cell

Declaration
public int Row { get; }
Property Value
Type Description
int

Tokens

Tokens for the formula. Not applicable to External cells.

Declaration
public IList<Token> Tokens { get; }
Property Value
Type Description
IList<Token>

Value

The value of the current cell.

Declaration
public object Value { get; }
Property Value
Type Description
object

ValueDouble

The value as double of the current cell. Bools will be ignored.

Declaration
public double ValueDouble { get; }
Property Value
Type Description
double

ValueDoubleLogical

The value as double of the current cell.

Declaration
public double ValueDoubleLogical { get; }
Property Value
Type Description
double

WorksheetName

The name of the worksheet.

Declaration
public string WorksheetName { get; }
Property Value
Type Description
string

Implements

ICellInfo
In this article
Back to top Generated by DocFX