Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / FlexGrid Class / Item Property / Item(GridRow,GridColumn) Property
The row.
The column.


In This Topic
    Item(GridRow,GridColumn) Property
    In This Topic
    Gets or sets the value of the cell specified by its row and column.
    Syntax
    'Declaration
     
    
    Public Overloads Property Item( _
       ByVal row As GridRow, _
       ByVal col As GridColumn _
    ) As Object
    'Usage
     
    
    Dim instance As FlexGrid
    Dim row As GridRow
    Dim col As GridColumn
    Dim value As Object
     
    instance.Item(row, col) = value
     
    value = instance.Item(row, col)
    public object Item( 
       GridRow row,
       GridColumn col
    ) {get; set;}

    Parameters

    row
    The row.
    col
    The column.
    See Also