Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / WorksheetView Class / IsBelongToSelection Method
An integer value indicates the row index.
An integer value indicates the column index.


In This Topic
    IsBelongToSelection Method
    In This Topic
    Gets a boolean value indicating whether the specified cell belong to the current selection(s).
    Syntax
    'Declaration
     
    
    Public Function IsBelongToSelection( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As WorksheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsBelongToSelection(row, column)
    public bool IsBelongToSelection( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index.
    column
    An integer value indicates the column index.

    Return Value

    true if the specified cell belong to the current selection(s); otherwise, false.
    See Also