DataGridView.SetCellValue(Int32, String, Object) Method
In This Article
Assigns a value to the specified cell.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
#Declaration
C#
public void SetCellValue(
int rowHandle,
string fieldName,
object value
)
#Parameters
Name | Type | Description |
---|---|---|
row |
Int32 | The handle of the row that contains the cell. |
field |
String | The field name of the column that contains the cell. |
value | Object | An object that specifies a new value to be assigned to the cell. |
See Also