Spread Windows Forms 12.0 Product Documentation
GetExtendedSelection Method (DefaultSheetSelectionModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : GetExtendedSelection Method
Row index to which to extend the selection
Column index to which to extend the selection
Gets the cell range that would be selected if you extended the current selection to the specified row and column indexes.
Syntax
'Declaration
 
Public Function GetExtendedSelection( _
   ByVal extendRow As Integer, _
   ByVal extendColumn As Integer _
) As CellRange
'Usage
 
Dim instance As DefaultSheetSelectionModel
Dim extendRow As Integer
Dim extendColumn As Integer
Dim value As CellRange
 
value = instance.GetExtendedSelection(extendRow, extendColumn)
public CellRange GetExtendedSelection( 
   int extendRow,
   int extendColumn
)

Parameters

extendRow
Row index to which to extend the selection
extendColumn
Column index to which to extend the selection

Return Value

CellRange object containing the range of cells
Example
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel ds = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
FarPoint.Win.Spread.Model.CellRange cr;
fpSpread1.ActiveSheet.Models.Selection = ds;
ds.AddSelection(0, 0, 3, 4);
cr = ds.GetExtendedSelection(5, 7);
fpSpread2.ActiveSheet.AddSelection(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount);
Dim ds As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel
Dim cr As FarPoint.Win.Spread.Model.CellRange
FpSpread1.ActiveSheet.Models.Selection = ds
ds.AddSelection(0, 0, 3, 4)
cr = ds.GetExtendedSelection(5, 7)
FpSpread2.ActiveSheet.AddSelection(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount)
See Also

Reference

DefaultSheetSelectionModel Class
DefaultSheetSelectionModel Members
ExtendSelection Method
SetSelection Method