Back to Devexpress

EditFormShowingEventHandler Delegate

windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-2d217afe.md

latest1.8 KB
Original Source

EditFormShowingEventHandler Delegate

Represents a method that will handle the GridView.EditFormShowing event.

Namespace : DevExpress.XtraGrid.Views.Grid

Assembly : DevExpress.XtraGrid.v25.2.dll

NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

csharp
public delegate void EditFormShowingEventHandler(
    object sender,
    EditFormShowingEventArgs e
);
vb
Public Delegate Sub EditFormShowingEventHandler(
    sender As Object,
    e As EditFormShowingEventArgs
)

Parameters

NameTypeDescription
senderObject

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

EditFormShowing

DevExpress.XtraGrid.Views.Grid Namespace