Spread WPF 16
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / IsSelected Method
The row index.
The column index.
Example


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

    Parameters

    row
    The row index.
    column
    The column index.

    Return Value

    true if the specified row is selected; otherwise, false.
    Example
    This example uses the IsSelected method.
    See Also