Table of Contents

Class ExcelFormulaAddress

Namespace
OfficeOpenXml
Assembly
EPPlus.dll

Range address used in the formula parser

public class ExcelFormulaAddress : ExcelAddressBase
Inheritance
ExcelFormulaAddress
Inherited Members

Constructors

ExcelFormulaAddress(int, int, int, int)

Creates an Address object

public ExcelFormulaAddress(int fromRow, int fromCol, int toRow, int toColumn)

Parameters

fromRow int

start row

fromCol int

start column

toRow int

End row

toColumn int

End column

ExcelFormulaAddress(string, ExcelWorksheet)

Creates an Address object

public ExcelFormulaAddress(string address, ExcelWorksheet worksheet)

Parameters

address string

The formula address

worksheet ExcelWorksheet

The worksheet

Properties

Address

The address for the range

public string Address { get; set; }

Property Value

string

Remarks

Examples of addresses are "A1" "B1:C2" "A:A" "1:1" "A1:E2,G3:G5"

Addresses

Addresses can be separated by a comma. If the address contains multiple addresses this list contains them.

public List<ExcelFormulaAddress> Addresses { get; }

Property Value

List<ExcelFormulaAddress>