ExcelAddressBase Constructor (Int32, Int32, Int32, Int32)

Office Open XML

Creates an Address object

Namespace:  OfficeOpenXml
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public ExcelAddressBase(
	int fromRow,
	int fromCol,
	int toRow,
	int toColumn
)
Visual Basic (Declaration)
Public Sub New ( _
	fromRow As Integer, _
	fromCol As Integer, _
	toRow As Integer, _
	toColumn As Integer _
)
Visual C++
public:
ExcelAddressBase(
	int fromRow, 
	int fromCol, 
	int toRow, 
	int toColumn
)

Parameters

fromRow
Type: System..::.Int32
start row
fromCol
Type: System..::.Int32
start column
toRow
Type: System..::.Int32
End row
toColumn
Type: System..::.Int32
End column

See Also