VCCodeDelegate.Location 屬性
取得父物件宣告的位置。
命名空間: Microsoft.VisualStudio.VCCodeModel
組件: Microsoft.VisualStudio.VCCodeModel (在 Microsoft.VisualStudio.VCCodeModel.dll 中)
語法
'宣告
ReadOnly Property Location ( _
Where As vsCMWhere _
) As String
string this[
vsCMWhere Where
] { get; }
property String^ Location[[InAttribute] vsCMWhere Where] {
String^ get ([InAttribute] vsCMWhere Where);
}
abstract Location :
Where:vsCMWhere -> string with get
JScript 不支援索引屬性。
參數
Where
類型:Microsoft.VisualStudio.VCCodeModel.vsCMWhere選擇項。 vsCMWhere 值,指定傳回之宣告或定義的位置。
屬性值
類型:String
父物件宣告的位置。
備註
如需這個範例的編譯與執行等詳細資訊,請參閱 如何:編譯 Visual C++ 程式碼模型擴充性的範例程式碼。
範例
這個範例會顯示包含每個最上層程式碼項目的檔案中宣告。
[Visual Basic]
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
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。