Skip to main content
.NET 6.0+

ParametrizedActionExecuteEventHandler Delegate

Represents a method that will handle the ParametrizedAction.Execute event.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public delegate void ParametrizedActionExecuteEventHandler(
    object sender,
    ParametrizedActionExecuteEventArgs e
);

Parameters

Name Type
sender Object
e ParametrizedActionExecuteEventArgs

Remarks

When creating a ParametrizedActionExecuteEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs unless you remove the delegate. For more information on event handler delegates, see Handling and Raising Events.

See Also