Command.ExecuteAction Event

This event signals that this Command is executed. Handle this event to implement the actions to be executed when the command is fired.

Namespace: Microsoft.Practices.CompositeUI.Commands
Assembly: Microsoft.Practices.CompositeUI (in microsoft.practices.compositeui.dll)

Syntax

'Declaration
Public Event ExecuteAction As EventHandler
'Usage
Dim instance As Command
Dim handler As EventHandler

AddHandler instance.ExecuteAction, handler
public event EventHandler ExecuteAction
public:
event EventHandler^ ExecuteAction {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
/** @event */
public void add_ExecuteAction (EventHandler value)

/** @event */
public void remove_ExecuteAction (EventHandler value)
JScript supports the use of events, but not the declaration of new ones.

See Also

Reference

Command Class
Command Members
Microsoft.Practices.CompositeUI.Commands Namespace