_Solution::ProjectItemsTemplatePath Method (String^)

 

Returns the location of project item templates for the specified project type.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

String^ ProjectItemsTemplatePath(
	String^ ProjectKind
)

Parameters

ProjectKind
Type: System::String^

Required. The Constants.vsProjectKind* project template representing the project type.

Return Value

Type: System::String^

The path to the templates of the given project type.

ProjectItemsTemplatePath is similar to TemplatePath except that it is for templates rather than projects.

Sub ProjectItemsTemplatePathExample()
   ' Open a Visual Basic solution before running this example.
   Dim soln As Solution

   ' Create a reference to the solution.
   soln = DTE.Solution

   ' List the path to the templates for the project item type.
   MsgBox(soln.ProjectItemsTemplatePath(DTE.Solution.Item(1).kind))
End Sub
Return to top
Show: