VCFileCodeModel.CodeElementFromFullName Method

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

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

Syntax

CodeElements CodeElementFromFullName(
    string Name
)

Parameters

  • Name
    Type: System.String

    Required. The full name of the elements to retrieve.

Return Value

Type: CodeElements

A CodeElements collection.

Examples

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

Permissions

See Also

Reference

VCFileCodeModel Interface

VCFileCodeModel Members

Microsoft.VisualStudio.VCCodeModel Namespace