Class ExcelAddress
- Namespace
- OfficeOpenXml
- Assembly
- EPPlus.dll
Range address with the address property readonly
public class ExcelAddress : ExcelAddressBase
- Inheritance
-
ExcelAddress
- Derived
- Inherited Members
Constructors
ExcelAddress(int, int, int, int)
Constructor
public ExcelAddress(int fromRow, int fromCol, int toRow, int toColumn)
Parameters
ExcelAddress(string)
Constructor
public ExcelAddress(string address)
Parameters
addressstringThe Excel address
ExcelAddress(string, ExcelPackage, ExcelAddressBase)
Creates an Address object
public ExcelAddress(string Address, ExcelPackage package, ExcelAddressBase referenceAddress)
Parameters
AddressstringThe Excel Address
packageExcelPackageReference to the package to find information about tables and names
referenceAddressExcelAddressBaseThe address
Remarks
Examples of addresses are "A1" "B1:C2" "A:A" "1:1" "A1:E2,G3:G5"
ExcelAddress(string, int, int, int, int)
Constructor
public ExcelAddress(string ws, int fromRow, int fromCol, int toRow, int toColumn)
Parameters
wsstringWorksheet name
fromRowintFrom row
fromColintFrom column
toRowintTo row
toColumnintTo column
Properties
Address
The address for the range
public string Address { get; set; }
Property Value
Remarks
Examples of addresses are "A1" "B1:C2" "A:A" "1:1" "A1:E2,G3:G5"