_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
string this[
string ProjectType
] { get; }
property String^ TemplatePath[[InAttribute] String^ ProjectType] {
String^ get ([InAttribute] String^ ProjectType);
}
abstract TemplatePath :
ProjectType:string -> string with get
JScript ne prend pas en charge les propriétés indexées.
Paramètres
ProjectType
Type : StringObligatoire. Identificateur universel unique (GUID) identifiant le type de projet, de PrjKind.
Valeur de propriété
Type : 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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.