CODEMEMBERTYPE Enumeration

 

Used to specify the type of code members that are to be returned from a list of code members.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)

public enum CODEMEMBERTYPE

Member nameDescription
CODEMEMBERTYPE_EVENT_HANDLERS

Specifies an event handler type.

CODEMEMBERTYPE_EVENTS

Specifies an event type.

CODEMEMBERTYPE_USER_FUNCTIONS

Specifies a user function type.

From singlefileeditor.idl:

typedef enum _CODEMEMBERTYPE {
    CODEMEMBERTYPE_EVENTS         = 0x00000001,
    CODEMEMBERTYPE_EVENT_HANDLERS = 0x00000002,
    CODEMEMBERTYPE_USER_FUNCTIONS = 0x00000004
} CODEMEMBERTYPE;

These values are passed as flags to the GetMembers method in the IVsContainedLanguageCodeSupport interface.

Return to top
Show: