vsCMPart 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.
Represents the portion of a code construct.
public enum class vsCMPart
public enum class vsCMPart
enum vsCMPart
public enum vsCMPart
type vsCMPart =
Public Enum vsCMPart
- Inheritance
-
vsCMPart
Fields
Name | Value | Description |
---|---|---|
vsCMPartName | 1 | The name of the code construct. |
vsCMPartAttributes | 2 | The attributes that apply to the code construct, minus the attribute delimiters. |
vsCMPartHeader | 4 | The header of the code construct. |
vsCMPartHeaderWithAttributes | 6 | The code construct's header and its attributes. |
vsCMPartWhole | 8 | The entire code construct. |
vsCMPartWholeWithAttributes | 10 | The entire code construct and its attributes. |
vsCMPartBody | 16 | The body of the code construct, minus the body delimiters. |
vsCMPartNavigate | 32 | The location in the source code to which the insertion point moves when you double-click an element in Class View. |
vsCMPartAttributesWithDelimiter | 68 | The applicable attributes and the attribute delimiters. |
vsCMPartBodyWithDelimiter | 80 | The body of the code construct and its delimiters. |