Skip to main content

DataGridView.SetCellValue(Int32, GridColumn, Object) Method

Assigns a value to the specified cell.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

public void SetCellValue(
    int rowHandle,
    GridColumn column,
    object value
)

Parameters

Name Type Description
rowHandle Int32

The handle of the row that contains the cell.

column GridColumn

A GridColumn class descendant that specifies the column containing the cell.

value Object

An object that specifies a new value to be assigned to the cell.

See Also