Show / Hide Table of Contents

Class ExcelFormulaAddress

Range address used in the formula parser

Inheritance
System.Object
ExcelCellBase
ExcelAddressBase
ExcelFormulaAddress
Inherited Members
ExcelAddressBase.SetAddress(String)
ExcelAddressBase.ChangeAddress()
ExcelAddressBase.Start
ExcelAddressBase.End
ExcelAddressBase.Table
ExcelAddressBase.IsName
ExcelAddressBase.ToString()
ExcelAddressBase.Validate()
ExcelAddressBase.Rows
ExcelAddressBase.Columns
ExcelAddressBase.IsFullRow
ExcelAddressBase.IsFullColumn
ExcelCellBase.TranslateFromR1C1(String, Int32, Int32)
ExcelCellBase.TranslateToR1C1(String, Int32, Int32)
ExcelCellBase.GetColumnLetter(Int32)
ExcelCellBase.GetColumnLetter(Int32, Boolean)
ExcelCellBase.GetAddressRow(Int32, Boolean)
ExcelCellBase.GetAddressCol(Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32)
ExcelCellBase.GetAddress(Int32, Boolean, Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32, Int32, Int32)
ExcelCellBase.GetAddress(Int32, Int32, Int32, Int32, Boolean)
ExcelCellBase.GetAddress(Int32, Int32, Int32, Int32, Boolean, Boolean, Boolean, Boolean)
ExcelCellBase.GetFullAddress(String, String)
ExcelCellBase.GetFullAddress(String, String, String)
ExcelCellBase.IsValidAddress(String)
ExcelCellBase.IsValidCellAddress(String)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ExcelFormulaAddress : ExcelAddressBase

Constructors

ExcelFormulaAddress(Int32, Int32, Int32, Int32)

Creates an Address object

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

start row

System.Int32 fromCol

start column

System.Int32 toRow

End row

System.Int32 toColumn

End column

ExcelFormulaAddress(String)

Creates an Address object

Declaration
public ExcelFormulaAddress(string address)
Parameters
Type Name Description
System.String address

The formula address

Properties

Address

The address for the range

Declaration
public string Address { get; set; }
Property Value
Type Description
System.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
System.Collections.Generic.List<ExcelFormulaAddress>
Back to top Generated by DocFX