VCCodeTypedef.Location Property
Visual Studio 2012
Returns the location of the object declaration.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
This example displays the file containing the declaration for each top-level code element.
Sub DisplayLocation() Dim vcCM As VCCodeModel Dim vcCodeElement As VCCodeElement vcCM = DTE.Solution.Item(1).CodeModel For Each vcCodeElement In vcCM.CodeElements MsgBox(vcCodeElement.Name + " is declared in " + vcCodeElement.Location) Next 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.