vsCMWhere 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 by the StartPointOf, EndPointOf, and Location properties.
public enum class vsCMWhere
public enum class vsCMWhere
enum vsCMWhere
public enum vsCMWhere
type vsCMWhere =
Public Enum vsCMWhere
- Inheritance
-
vsCMWhere
Fields
Name | Value | Description |
---|---|---|
vsCMWhereInvalid | -1 | Enumeration is uninitialized. |
vsCMWhereDefault | 0 | Avoids errors by searching for either a definition or declaration. |
vsCMWhereDeclaration | 1 | The declaration of the parent object. |
vsCMWhereDefinition | 2 | The definition of the parent object. |
Remarks
Use the vsCMWhereDefault value when you are uncertain if the parent object has both a definition and a declaration. This value causes the method to first search for a definition. If no definition is found, the method automatically searches for a declaration. If neither a definition nor declaration is found, the method fails.
Note
The vsCMWhereInvalid constant indicates that the enumeration has not been previously initialized by the programmer. The Visual C++ code model library does not use this value.