VCCodeElement.StartPointOf Property
Visual Studio 2008
Gets the start point of the parent object.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Parameters
- Part
- Type: EnvDTE.vsCMPart
Required. A vsCMPart value specifying which part of the definition or the declaration to use (attributes block, body, and so on).
- Where
- Type: Microsoft.VisualStudio.VCCodeModel.vsCMWhere
Optional. A vsCMWhere value specifying whether the TextPoint object is the definition or the declaration.
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
This example adds a comment at the beginning of a code element declaration.
Sub AddCommentAtBeginning() Dim vcElement As VCCodeElement Dim vcElements As VCCodeElements Dim textPoint As TextPoint vcElements = DTE.Solution.Item(1).CodeModel.Classes vcElement = vcElements.Item(1) textPoint = vcElement.StartPointOf(vsCMPart.vsCMPartWhole) textPoint.CreateEditPoint().Insert("/*Comment*/") End Sub
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.