Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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)
Syntax
'Declaration
Public Enumeration CODEMEMBERTYPE
public enum CODEMEMBERTYPE
public enum class CODEMEMBERTYPE
type CODEMEMBERTYPE
public enum CODEMEMBERTYPE
Members
Member name | Description | |
---|---|---|
CODEMEMBERTYPE_EVENTS | Specifies an event type. | |
CODEMEMBERTYPE_EVENT_HANDLERS | Specifies an event handler type. | |
CODEMEMBERTYPE_USER_FUNCTIONS | Specifies a user function type. |
Remarks
COM Signature
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.