_Solution::ProjectItemsTemplatePath Method (String^)
Visual Studio 2015
Returns the location of project item templates for the specified project type.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- ProjectKind
-
Type:
System::String^
Required. The Constants.vsProjectKind* project template representing the 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
Show: