Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridColumn Class / SetCellValue Method / SetCellValue(Object,Object) Method
The data item which stores the value.
The value to be set in the data item.


In This Topic
    SetCellValue(Object,Object) Method
    In This Topic
    Sets the specified value to dataItem property related to this column.
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetCellValue( _
       ByVal dataItem As Object, _
       ByVal value As Object _
    ) 
    'Usage
     
    
    Dim instance As GridColumn
    Dim dataItem As Object
    Dim value As Object
     
    instance.SetCellValue(dataItem, value)
    public void SetCellValue( 
       object dataItem,
       object value
    )

    Parameters

    dataItem
    The data item which stores the value.
    value
    The value to be set in the data item.
    See Also