Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridBase Class / GetSelectedState(Int32,Int32) Method
The row index.
The column index.


In This Topic
    GetSelectedState(Int32,Int32) Method
    In This Topic
    Gets a GridSelectedState value that indicates the selected state of the cells in a specified column and row.
    Syntax
    'Declaration
     
    
    Public Function GetSelectedState( _
       ByVal row As Integer, _
       ByVal col As Integer _
    ) As GridSelectedState
    'Usage
     
    
    Dim instance As GridBase
    Dim row As Integer
    Dim col As Integer
    Dim value As GridSelectedState
     
    value = instance.GetSelectedState(row, col)
    public GridSelectedState GetSelectedState( 
       int row,
       int col
    )

    Parameters

    row
    The row index.
    col
    The column index.
    See Also