Skip to main content
A newer version of this page is available. .

EditFormShowingEventHandler Delegate

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

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