Share via


VerbExecuteEventHandler Delegate

This Package | All Packages

Identifies the method that will handle the verbExecute event.

package com.ms.wfc.core

public multicast delegate
void VerbExecuteEventHandler( Object
sender**, VerbExecuteEvent** e );

Remarks

A verb is a command that appears on a shortcut menu when the user right-clicks a component. The verbExecute event then occurs when the user selects a verb on the shortcut menu.

The syntax of the VerbExecuteEventHandler delegate specifies the signature for the event handler, where sender is the source of the event and e is a VerbExecuteEvent object that provides information about the event.

When you create an VerbExecuteEventHandler delegate, you specify the method that will handle the event. Once the delegate is assigned to the event, the handler method is automatically invoked whenever the event is triggered.

For more information about delegates, see .