Show / Hide Table of Contents

Struct FormulaCellAddress

Formula Cell address

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.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
System.Int32 wsIx
System.Int32 row
System.Int32 column

Fields

Column

The column number

Declaration
public int Column
Field Value
Type Description
System.Int32

Row

The row number

Declaration
public int Row
Field Value
Type Description
System.Int32

WorksheetIx

Worksheet index in the package. -1 - Non-existing worksheet int.MinValue - Not set.

Declaration
public int WorksheetIx
Field Value
Type Description
System.Int32

Properties

Address

The address

Declaration
public readonly string Address { get; }
Property Value
Type Description
System.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
System.UInt64
In This Article
Back to top Generated by DocFX