_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 :
ProjectType:string -> string with get
JScript에서는 인덱싱된 속성을 지원하지 않습니다.
매개 변수
ProjectType
형식: String필수입니다. PrjKind의 프로젝트 형식을 나타내는 GUID입니다.
속성 값
형식: 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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.