dsSelectionManagerEvent_id_e Enumeration Send Feedback
See Also 
Types of selection events.

Syntax

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

Members

MemberDescription
dsSelectionManager_SelectionChangedNotify_id1 = SelectionChangedNotify
dsSelectionManager_SelectionPreNotify_id2 = SelectionPreNotify

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, 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()

See Also