Skip to main content

IEditableRowData.SetFieldValue(String, Object) Method

Sets a value to the specified field in the processed row.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

string SetFieldValue(
    string fieldName,
    object value
)

Parameters

Name Type Description
fieldName String

The name of the field whose value should be assigned.

value Object

The value to be assigned to the field.

Returns

Type
String

Remarks

If the DataGridView.CustomUnboundColumnData event is raised when a user modifies an unbound column’s value in the grid (the GridColumnDataEventArgs.IsSetData parameter is set to true), you can use the SetFieldValue method to assign a value to the specified field in the processed row.

See Also