Struct FormulaCellAddress
- Namespace
- OfficeOpenXml.FormulaParsing.LexicalAnalysis
- Assembly
- EPPlus.dll
Formula Cell address
public struct FormulaCellAddress
- Inherited Members
Constructors
FormulaCellAddress(int, int, int)
Constructor cell address
public FormulaCellAddress(int wsIx, int row, int column)
Parameters
Fields
Column
The column number
public int Column
Field Value
Row
The row number
public int Row
Field Value
WorksheetIx
Worksheet index in the package. -1 - Non-existing worksheet int.MinValue - Not set.
public int WorksheetIx
Field Value
Properties
Address
The address
public string Address { get; }
Property Value
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)
public ulong CellId { get; }