Struct FormulaCellAddress
Formula Cell address
Inherited Members
ValueType.Equals(Object)
ValueType.GetHashCode()
ValueType.ToString()
Object.Equals(Object, Object)
Object.GetType()
Object.ReferenceEquals(Object, Object)
Namespace: OfficeOpenXml.FormulaParsing.LexicalAnalysis
Assembly: EPPlus.dll
Syntax
public struct FormulaCellAddress
Constructors
FormulaCellAddress(Int32, Int32, Int32)
Constructor cell address
Declaration
public FormulaCellAddress(int wsIx, int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | wsIx | |
| Int32 | row | |
| Int32 | column |
Fields
Column
The column number
Declaration
public int Column
Field Value
| Type | Description |
|---|---|
| Int32 |
Row
The row number
Declaration
public int Row
Field Value
| Type | Description |
|---|---|
| Int32 |
WorksheetIx
Worksheet index in the package. -1 - Non-existing worksheet int.MinValue - Not set.
Declaration
public int WorksheetIx
Field Value
| Type | Description |
|---|---|
| Int32 |
Properties
Address
The address
Declaration
public readonly string Address { get; }
Property Value
| Type | Description |
|---|---|
| String |
CellId
The cell id for the address. The cell Id is an ulong with the worksheet shifted as
((ushort)sheetId) | (((ulong)col) << 16) | (((ulong)row) << 30)
Declaration
public readonly ulong CellId { get; }
Property Value
| Type | Description |
|---|---|
| UInt64 |