Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DataGridView.EditorShown Event

In This Article

Occurs when the DataGridView cell’s editor is displayed.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

#Declaration

C#
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