Creates an instance of an XLCellRange object containing a specified range.

Namespace:  C1.Silverlight.Excel
Assembly:  C1.Silverlight.Excel.5 (in C1.Silverlight.Excel.5.dll)

Syntax

C#
public XLCellRange(
	XLSheet sheet,
	int rowFrom,
	int rowTo,
	int colFrom,
	int colTo
)
Visual Basic
Public Sub New ( _
	sheet As XLSheet, _
	rowFrom As Integer, _
	rowTo As Integer, _
	colFrom As Integer, _
	colTo As Integer _
)

Parameters

sheet
Type: C1.Silverlight.Excel..::..XLSheet
The XLSheet of this cell range.
rowFrom
Type: System..::..Int32
Top row in the range.
rowTo
Type: System..::..Int32
Bottom row in the range.
colFrom
Type: System..::..Int32
Left column in the range.
colTo
Type: System..::..Int32
Right column in the range.

See Also