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.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public IEditableRowData EditableRowData { get; }

Property Value

Type Description
IEditableRowData

An object implementing the IEditableRowData interface.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

If the GridControl.CustomUnboundColumnData event is raised when an end-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 containing data of the processed row and call it’s IEditableRowData.SetFieldValue method to change and save any field’s value.

See Also