Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetSelectionModel Class / GetExtendedSelection Method
Row index to which to extend the selection
Column index to which to extend the selection


In This Topic
    GetExtendedSelection Method (DefaultSheetSelectionModel)
    In This Topic
    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 in the selection
    See Also