Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / FlexGrid Class / SetCellValue Method / SetCellValue(GridCellType,GridRow,GridColumn,Object) Method
The type of cell.
The row.
The column.
The value.


In This Topic
    SetCellValue(GridCellType,GridRow,GridColumn,Object) Method
    In This Topic
    Sets the value corresponding to the cell in the specified row and column.
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetCellValue( _
       ByVal cellType As GridCellType, _
       ByVal row As GridRow, _
       ByVal column As GridColumn, _
       ByVal value As Object _
    ) 
    'Usage
     
    
    Dim instance As FlexGrid
    Dim cellType As GridCellType
    Dim row As GridRow
    Dim column As GridColumn
    Dim value As Object
     
    instance.SetCellValue(cellType, row, column, value)
    public void SetCellValue( 
       GridCellType cellType,
       GridRow row,
       GridColumn column,
       object value
    )

    Parameters

    cellType
    The type of cell.
    row
    The row.
    column
    The column.
    value
    The value.
    See Also