CODEMEMBERTYPE Enumeration
Visual Studio 2015
Used to specify the type of code members that are to be returned from a list of code members.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| 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.
Show: