dsCommandEvent_id_e Enumeration Send Feedback
See Also 
Types of command events.

Syntax

Visual Basic 
Public Enum dsCommandEvent_id_e 
   Inherits System.Enum
C# 
public enum dsCommandEvent_id_e : System.Enum 
JavaScript 
dsCommandEvent_id_e : String
COM native C++ 
enum dsCommandEvent_id_e
C++ 
enum dsCommandEvent_id_e

Members

MemberDescription
dsCommand_ExecuteNotify_id1 = ExecuteNotify

Remarks

To receive notifications, a DLL application must register for the notifications by object type. This registration must be done for each instance of a particular object.

For example, the file:

BEGIN_SINK_MAP(CDsAddinCommand)
    SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__ICommandEvents, dsCommand_ExecuteNotify_id, OnExecuteNotify)
END_SINK_MAP()

RegisterCommandExecuteNotifyHook( pCmd );

See Also