Skip to main content

GridColumnDataEventArgs.EditableRowData Property

Gets an object that contains information on the currently processed row and allows you to modify field values.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

public IEditableRowData EditableRowData { get; }

Property Value

Type Description
IEditableRowData

An object that implements the IEditableRowData interface.

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 EditableRowData property in the event handler to access an IEditableRowData object that contains data of the processed row and call it’s IEditableRowData.SetFieldValue method to change and save any field’s value.

See Also