Partager via


_Solution.TemplatePath, propriété

Obtient le chemin d'accès complet et le nom du répertoire contenant les modèles pour le type de projet spécifié.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
ReadOnly Property TemplatePath ( _
    ProjectType As String _
) As String
    Get
string this[
    string ProjectType
] { get; }
property String^ TemplatePath[[InAttribute] String^ ProjectType] {
    String^ get ([InAttribute] String^ ProjectType);
}
abstract TemplatePath : string
JScript ne prend pas en charge les propriétés indexées.

Paramètres

  • ProjectType
    Type : System.String
    Obligatoire.Identificateur universel unique (GUID) identifiant le type de projet, de PrjKind.

Valeur de propriété

Type : System.String
Chemin d'accès complet et nom du répertoire contenant les modèles pour le type de projet spécifié.

Notes

Par exemple, TemplatePath(vsVBProjectKind) retourne le chemin d'accès <Visual Studio root installation directory>\VBProjects.

TemplatePath est semblable à ProjectItemsTemplatePath, excepté qu'elle concerne les projets et non pas les modèles.

Exemples

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

Sécurité .NET Framework

Voir aussi

Référence

_Solution Interface

EnvDTE, espace de noms