Selects cell range and optionally scrolls it into view.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public void Select(
	int row,
	int col,
	int row2,
	int col2,
	bool scrollIntoView
)
Visual Basic
Public Sub Select ( _
	row As Integer, _
	col As Integer, _
	row2 As Integer, _
	col2 As Integer, _
	scrollIntoView As Boolean _
)

Parameters

row
Type: System..::..Int32
Index of the first row in the selected range.
col
Type: System..::..Int32
Index of the first column in the selected range.
row2
Type: System..::..Int32
Index of the last row in the selected range.
col2
Type: System..::..Int32
Index of the last column in the selected range.
scrollIntoView
Type: System..::..Boolean
Whether to scroll the new selection into view.

See Also