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,
	XLReferenceType rowFromRef,
	XLReferenceType rowToRef,
	XLReferenceType colFromRef,
	XLReferenceType colToRef
)
Visual Basic
Public Sub New ( _
	sheet As XLSheet, _
	rowFrom As Integer, _
	rowTo As Integer, _
	colFrom As Integer, _
	colTo As Integer, _
	rowFromRef As XLReferenceType, _
	rowToRef As XLReferenceType, _
	colFromRef As XLReferenceType, _
	colToRef As XLReferenceType _
)

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.
rowFromRef
Type: C1.Silverlight.Excel..::..XLReferenceType
The reference type of the top row in the range.
rowToRef
Type: C1.Silverlight.Excel..::..XLReferenceType
The reference type of the bottom row in the range.
colFromRef
Type: C1.Silverlight.Excel..::..XLReferenceType
The reference type of the left column in the range.
colToRef
Type: C1.Silverlight.Excel..::..XLReferenceType
The reference type of the right column in the range.

See Also