Table of Contents

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

string

Column

The column of the cell

public int Column { get; }

Property Value

int

Formula

Formula. Always return Empty.String for external cells.

public string Formula { get; }

Property Value

string

Id

The cell id

public ulong Id { get; }

Property Value

ulong

IsExcelError

If the value of the cell is an Excel Error

public bool IsExcelError { get; }

Property Value

bool

IsHiddenRow

If the row of the cell is hidden

public bool IsHiddenRow { get; }

Property Value

bool

Row

The row of the cell

public int Row { get; }

Property Value

int

Tokens

Tokens for the formula. Not applicable to External cells.

public IList<Token> Tokens { get; }

Property Value

IList<Token>

Value

The value of the current cell.

public object Value { get; }

Property Value

object

ValueDouble

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

public double ValueDouble { get; }

Property Value

double

ValueDoubleLogical

The value as double of the current cell.

public double ValueDoubleLogical { get; }

Property Value

double

WorksheetName

The name of the worksheet.

public string WorksheetName { get; }

Property Value

string