Compartir a través de


_Solution.ProjectItemsTemplatePath (Método)

Devuelve la ubicación de las plantillas de elementos de proyecto para el tipo de proyecto especificado.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
Function ProjectItemsTemplatePath ( _
    ProjectKind As String _
) As String
string ProjectItemsTemplatePath(
    string ProjectKind
)
String^ ProjectItemsTemplatePath(
    String^ ProjectKind
)
abstract ProjectItemsTemplatePath : 
        ProjectKind:string -> string 
function ProjectItemsTemplatePath(
    ProjectKind : String
) : String

Parámetros

  • ProjectKind
    Tipo: System.String
    Obligatorio.Plantilla del proyecto Constants.vsProjectKind* que representa el tipo de proyecto.

Valor devuelto

Tipo: System.String
Ruta de acceso a las plantillas del tipo de proyecto determinado.

Comentarios

ProjectItemsTemplatePath es similar a TemplatePath, salvo que es para plantillas y no para proyectos.

Ejemplos

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

Seguridad de .NET Framework

Vea también

Referencia

_Solution Interfaz

EnvDTE (Espacio de nombres)