Поделиться через


VCFileCodeModel.CodeElementFromFullName - метод

Gets a collection of the specified code elements for the object.

Пространство имен:  Microsoft.VisualStudio.VCCodeModel
Сборка:  Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)

Синтаксис

'Декларация
Function CodeElementFromFullName ( _
    Name As String _
) As CodeElements
'Применение
Dim instance As VCFileCodeModel
Dim Name As String
Dim returnValue As CodeElements

returnValue = instance.CodeElementFromFullName(Name)
CodeElements CodeElementFromFullName(
    string Name
)
CodeElements^ CodeElementFromFullName(
    [InAttribute] String^ Name
)
function CodeElementFromFullName(
    Name : String
) : CodeElements

Параметры

  • Name
    Тип: System.String

    Required. The full name of the elements to retrieve.

Возвращаемое значение

Тип: EnvDTE.CodeElements

A CodeElements collection.

Примеры

This example adds a class and a function, retrieves a pointer to the function by using CodeElementFromFullName, and adds a parameter to it.

Sub AddFunction()
    Dim vcCM As VCCodeModel
    Dim vcClass As VCCodeClass
    Dim vcFunction As VCCodeFunction
    Dim vcParameter As VCCodeParameter
    vcCM = DTE.Solution.Item(1).CodeModel
    vcClass = vcCM.AddClass("MyClass", "MyClass.h")
    vcClass.AddFunction("MyFunction", vsCMFunction.vsCMFunctionFunction, "int")
    vcFunction = vcCM.CodeElementFromFullName("MyClass::MyFunction").Item(1)
    vcParameter = vcFunction.AddParameter("MyParameter", "int")
End Sub

Разрешения

  • Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.

См. также

Ссылки

VCFileCodeModel Интерфейс

VCFileCodeModel - члены

Microsoft.VisualStudio.VCCodeModel - пространство имен