DataGridView.GetCellValue(Int32, String) Method
In This Article
Gets the value of the specified cell.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
#Declaration
C#
public object GetCellValue(
int rowHandle,
string fieldName
)
#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. This parameter can refer to any field in the data source, even if the grid does not contain a column associated with this field. The method throws the Null |
#Returns
Type | Description |
---|---|
Object | The specified cell value. |
See Also