Visual Basic | |
---|---|
Public Enum dsSelectionManagerEvent_id_e Inherits System.Enum |
C# | |
---|---|
public enum dsSelectionManagerEvent_id_e : System.Enum |
JavaScript | |
---|---|
dsSelectionManagerEvent_id_e : String |
COM native C++ | |
---|---|
enum dsSelectionManagerEvent_id_e |
C++ | |
---|---|
enum dsSelectionManagerEvent_id_e |
Member | Description |
---|---|
dsSelectionManager_SelectionChangedNotify_id | 1 = SelectionChangedNotify |
dsSelectionManager_SelectionPreNotify_id | 2 = SelectionPreNotify |
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, to register the ISelectionManager SelectionChangedNotify event in a COM native C++ interface add-in project:
BEGIN_SINK_MAP(CDsAddinSelectionManager)
SINK_ENTRY_EX(IDC_DSAPPLICATIONEVENT, DIID__ISelectionManagerEvents, dsSelectionManager_SelectionChangedNotify_id, OnSelectionChangedNotify)
END_SINK_MAP()