Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / BaseSheetSelectionModel Class / IsSelected Method
Row index
Column index
Example


In This Topic
    IsSelected Method (BaseSheetSelectionModel)
    In This Topic
    Determines whether the specified cell is in the selection.
    Syntax
    'Declaration
     
    
    Public Overridable Function IsSelected( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As BaseSheetSelectionModel
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsSelected(row, column)
    public virtual bool IsSelected( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index

    Return Value

    true if the cell is in a selection; false otherwise
    Example
    This example returns if the selection contains the specified cell.
    See Also