Skip to main content

DataGridView.EditorShown Event

Occurs when the DataGridView cell’s editor is displayed.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

Declaration

public event EventHandler<EditorShownEventArgs> EditorShown

Event Data

The EditorShown event's data class is EditorShownEventArgs. The following properties provide information specific to this event:

Property Description
Editor Gets the displayed editor.
FieldName Gets or sets the field name of the column for which the editor is displayed. This is a bindable property.
IsAutoFilterRow Gets whether the edited item is the auto filter row.
Item Gets the data item that corresponds to the data grid item for which the editor is displayed.
RowHandle Gets the handle of the row that contains a cell for which the editor is displayed.
Value Gets the value that corresponds to the data grid item for which the editor is displayed.
See Also