_Solution.TemplatePath プロパティ
更新 : 2007 年 11 月
指定された種類のプロジェクトのテンプレートを含むディレクトリの完全パスと名前を取得します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property TemplatePath ( _
ProjectType As String _
) As String
'使用
Dim instance As _Solution
Dim ProjectType As String
Dim value As String
value = instance.TemplatePath(ProjectType)
string TemplatePath[
string ProjectType
] { get; }
property String^ TemplatePath[[InAttribute] String^ ProjectType] {
String^ get ([InAttribute] String^ ProjectType);
}
JScript では、インデックス付きプロパティはサポートされません。
パラメータ
ProjectType
型 : System.String必ず指定します。プロジェクトの種類を示す GUID。
プロパティ値
型 : 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
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。