_Solution.TemplatePath (Propiedad)
Obtiene la ruta de acceso completa y el nombre del directorio que contiene las plantillas para el tipo de proyecto especificado.
Espacio de nombres: EnvDTE
Ensamblado: EnvDTE (en EnvDTE.dll)
Sintaxis
'Declaración
ReadOnly Property TemplatePath ( _
ProjectType As String _
) As String
string this[
string ProjectType
] { get; }
property String^ TemplatePath[[InAttribute] String^ ProjectType] {
String^ get ([InAttribute] String^ ProjectType);
}
abstract TemplatePath :
ProjectType:string -> string with get
JScript no admite propiedades indizadas.
Parámetros
ProjectType
Tipo: StringObligatorio. GUID que identifica el tipo de proyecto a partir de PrjKind.
Valor de propiedad
Tipo: String
Ruta de acceso completa y nombre del directorio que contiene las plantillas para el tipo de proyecto especificado.
Comentarios
Por ejemplo, TemplatePath(vsVBProjectKind) devuelve la ruta de acceso <Visual Studio root installation directory>\VBProjects.
TemplatePath es similar a ProjectItemsTemplatePath, salvo que es para proyectos y no para plantillas.
Ejemplos
Sub TemplatePathExample()
' 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 type.
MsgBox(soln.TemplatePath(DTE.Solution.Item(1).Kind))
End Sub
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.