EditFormShowingEventHandler Delegate
Represents a method that will handle the GridView.EditFormShowing event.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
public delegate void EditFormShowingEventHandler(
object sender,
EditFormShowingEventArgs e
);
Parameters
Name | Type | Description |
---|---|---|
sender | Object | The source of an Edit Form opening event. |
e | EditFormShowingEventArgs | Information associated with an Edit Form opening event. |
Remarks
You can respond to an Edit Form opening by handling the GridView.EditFormShowing event. The EditFormShowingEventArgs class contains information about this event.
See Also