CODEMEMBERTYPE Enum
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
C++/CX
public enum class CODEMEMBERTYPE
enum CODEMEMBERTYPE
public enum CODEMEMBERTYPE
type CODEMEMBERTYPE =
Public Enum CODEMEMBERTYPE
- Inheritance
-
CODEMEMBERTYPE
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. |
From singlefileeditor.idl:
cpp#
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.
Produkt | Versiounen |
---|---|
Visual Studio SDK | 2015, 2017, 2019, 2022 |