Show / Hide Table of Contents

Class ExcelFormulaAddress

Range address used in the formula parser

Inheritance
object
ExcelCellBase
ExcelAddressBase
ExcelFormulaAddress
Inherited Members
ExcelAddressBase.SetAddress(string, ExcelWorkbook, string)
ExcelAddressBase.BeforeChangeAddress(string)
ExcelAddressBase.ChangeAddress(string)
ExcelAddressBase.Start
ExcelAddressBase.End
ExcelAddressBase.ExternalReferenceIndex
ExcelAddressBase.Table
ExcelAddressBase.AddressAbsolute
ExcelAddressBase.FullAddress
ExcelAddressBase.IsName
ExcelAddressBase.ToString()
ExcelAddressBase.GetHashCode()
ExcelAddressBase.Validate()
ExcelAddressBase.Rows
ExcelAddressBase.Columns
ExcelAddressBase.IsFullRow
ExcelAddressBase.IsFullColumn
ExcelAddressBase.LocalAddress
ExcelAddressBase.Equals(object)
ExcelAddressBase.IsExternal
ExcelCellBase.TranslateFromR1C1(string, int, int)
ExcelCellBase.TranslateToR1C1(string, int, int)
ExcelCellBase.GetColumnLetter(int)
ExcelCellBase.GetColumnLetter(int, bool)
ExcelCellBase.GetAddressRow(int, bool)
ExcelCellBase.GetAddressCol(int, bool)
ExcelCellBase.GetAddress(int, int)
ExcelCellBase.GetAddress(int, bool, int, bool)
ExcelCellBase.GetAddress(int, int, bool)
ExcelCellBase.GetAddress(int, int, int, int)
ExcelCellBase.GetAddress(int, int, int, int, bool)
ExcelCellBase.GetAddress(int, int, int, int, bool, bool, bool, bool)
ExcelCellBase.GetFullAddress(string, string)
ExcelCellBase.GetFullAddress(string, string, string)
ExcelCellBase.IsSimpleAddress(string)
ExcelCellBase.IsValidAddress(string)
ExcelCellBase.IsValidTableAddress(string)
ExcelCellBase.IsValidRangeAddress(string)
ExcelCellBase.IsValidCellAddress(string)
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ExcelFormulaAddress : ExcelAddressBase

Constructors

ExcelFormulaAddress(int, int, int, int)

Creates an Address object

Declaration
public ExcelFormulaAddress(int fromRow, int fromCol, int toRow, int toColumn)
Parameters
Type Name Description
int fromRow

start row

int fromCol

start column

int toRow

End row

int toColumn

End column

ExcelFormulaAddress(string, ExcelWorksheet)

Creates an Address object

Declaration
public ExcelFormulaAddress(string address, ExcelWorksheet worksheet)
Parameters
Type Name Description
string address

The formula address

ExcelWorksheet worksheet

The worksheet

Properties

Address

The address for the range

Declaration
public string Address { get; set; }
Property Value
Type Description
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.

Declaration
public List<ExcelFormulaAddress> Addresses { get; }
Property Value
Type Description
List<ExcelFormulaAddress>
In this article
Back to top Generated by DocFX