Back to Devexpress

SingleChoiceActionExecuteEventHandler Delegate

expressappframework-devexpress-dot-expressapp-dot-actions-ebf74237.md

latest1.8 KB
Original Source

SingleChoiceActionExecuteEventHandler Delegate

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

Namespace : DevExpress.ExpressApp.Actions

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

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

Parameters

NameType
senderObject
eSingleChoiceActionExecuteEventArgs

Remarks

When creating a SingleChoiceActionExecuteEventHandler 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

DevExpress.ExpressApp.Actions Namespace