Show / Hide Table of Contents

Class ExternalCellInfo

Provides information about an external cell in an external range.

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

Properties

Address

The cell address.

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

Column

The column of the cell

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

Formula

Formula. Always return Empty.String for external cells.

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

Id

The cell id

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

IsExcelError

If the value of the cell is an Excel Error

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

IsHiddenRow

If the row of the cell is hidden

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

Row

The row of the cell

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

Tokens

Tokens for the formula. Not applicable to External cells.

Declaration
public IList<Token> Tokens { get; }
Property Value
Type Description
System.Collections.Generic.IList<Token>

Value

The value of the current cell.

Declaration
public object Value { get; }
Property Value
Type Description
System.Object

ValueDouble

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

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

ValueDoubleLogical

The value as double of the current cell.

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

WorksheetName

The name of the worksheet.

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

Implements

ICellInfo
In This Article
Back to top Generated by DocFX