Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / BaseSheetSelectionModel Class / IsAnyCellInRowSelected Method
Row to check
Example


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

    Parameters

    row
    Row to check

    Return Value

    true if any cell in the specified row is selected; false otherwise
    Example
    This example returns if the specified row contains any selected cells.
    See Also