vsCMAddPosition Enumeration
Visual Studio 2015
Determines the position of the new code element in relation to the parent object.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
| Member name | Description | |
|---|---|---|
| vsCMAddPositionDefault | The default placement determined by the library (same as vsCMAddPositionEnd). | |
| vsCMAddPositionEnd | Item inserted at end of parent object. | |
| vsCMAddPositionInvalid | Enumeration is uninitialized. | |
| vsCMAddPositionStart | Item inserted at beginning of parent object. |
The position is determined by the item being inserted and the parent object. For example, if a variable declaration item is being inserted into a class object (specifying vsCMAddPositionStart), the declaration is placed directly after the opening brace of the class declaration.
Note |
|---|
The vsCMAddPositionInvalid constant indicates that the enumeration has not been previously initialized by the programmer. The Visual C++ code model library does not use this value. |
Show:
