VCCodeDelegate.Location Property

Gets the location of the parent object declaration.

Namespace:  Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)

Syntax

声明
ReadOnly Property Location ( _
    Where As vsCMWhere _
) As String
用法
Dim instance As VCCodeDelegate
Dim Where As vsCMWhere
Dim value As String

value = instance.Location(Where)
string Location[
    vsCMWhere Where
] { get; }
property String^ Location[[InAttribute] vsCMWhere Where] {
    String^ get ([InAttribute] vsCMWhere Where);
}
JScript does not support indexed properties.

Parameters

Property Value

Type: System.String

The location of the parent object declaration.

Remarks

See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.

Examples

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

Permissions

See Also

Reference

VCCodeDelegate Interface

VCCodeDelegate Members

Microsoft.VisualStudio.VCCodeModel Namespace