VCCodeStruct.Location - свойство
Returns the location of the object declaration.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
ReadOnly Property Location ( _
Where As vsCMWhere _
) As String
'Применение
Dim instance As VCCodeStruct
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 не поддерживает индексированные свойства.
Параметры
Where
Тип: Microsoft.VisualStudio.VCCodeModel.vsCMWhereOptional. A vsCMWhere value specifying whether the location of the declaration or the definition is returned.
Значение свойства
Тип: System.String
The location of the object 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 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
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.