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


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

    Parameters

    column
    Column to check

    Return Value

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