CODEMEMBERTYPE Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to specify the type of code members that are to be returned from a list of code members.
public enum class CODEMEMBERTYPE
public enum class CODEMEMBERTYPE
enum CODEMEMBERTYPE
public enum CODEMEMBERTYPE
type CODEMEMBERTYPE =
Public Enum CODEMEMBERTYPE
- Inheritance
-
CODEMEMBERTYPE
Fields
Name | Value | Description |
---|---|---|
CODEMEMBERTYPE_EVENTS | 1 | Specifies an event type. |
CODEMEMBERTYPE_EVENT_HANDLERS | 2 | Specifies an event handler type. |
CODEMEMBERTYPE_USER_FUNCTIONS | 4 | 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.