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
address
stringThe Excel address
ExcelAddress(string, ExcelPackage, ExcelAddressBase)
Creates an Address object
public ExcelAddress(string Address, ExcelPackage package, ExcelAddressBase referenceAddress)
Parameters
Address
stringThe Excel Address
package
ExcelPackageReference to the package to find information about tables and names
referenceAddress
ExcelAddressBaseThe 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
ws
stringWorksheet name
fromRow
intFrom row
fromCol
intFrom column
toRow
intTo row
toColumn
intTo 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"