Class ExternalCellInfo
Provides information about an external cell in an external range.
Inheritance
Object
ExternalCellInfo
Implements
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 |
|---|---|
| Int32 |
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 |
|---|---|
| UInt64 |
IsExcelError
If the value of the cell is an Excel Error
Declaration
public bool IsExcelError { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
IsHiddenRow
If the row of the cell is hidden
Declaration
public bool IsHiddenRow { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Row
The row of the cell
Declaration
public int Row { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
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 |