VCCodeModel::CodeElementFromFullName Method (String^)
Visual Studio 2015
Gets a collection of the specified code elements for the object.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Parameters
- Name
-
Type:
System::String^
Required. The full name of the elements to retrieve.
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
Show: