EditFormShowingEventHandler Delegate
In This Article
Represents a method that will handle the GridView.EditFormShowing event.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.2.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 | Edit |
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