_Solution.TemplatePath 属性
获取指定类型的项目的模板所在目录的完整路径和名称。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
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 : string
JScript 不支持索引属性。
参数
- ProjectType
类型:System.String
必选。GUID,从 PrjKind 标识项目类型。
属性值
类型:System.String
指定类型的项目的模板所在目录的完整路径和名称。
备注
例如,TemplatePath(vsVBProjectKind) 返回的路径是 <Visual Studio root installation directory>\VBProjects。
TemplatePath 与 ProjectItemsTemplatePath 类似,不同之处是前者用于项目而不用于模板。
示例
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
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。