다음을 통해 공유


ProjectItem.IsOpen 속성

프로젝트 항목이 특정 뷰 형식으로 열리는지를 나타내는 값을 가져옵니다.

네임스페이스:  EnvDTE
어셈블리:  EnvDTE(EnvDTE.dll)

구문

‘선언
ReadOnly Property IsOpen ( _
    ViewKind As String _
) As Boolean
bool this[
    string ViewKind
] { get; }
property bool IsOpen[[InAttribute] String^ ViewKind] {
    bool get ([InAttribute] String^ ViewKind);
}
abstract IsOpen : 
        ViewKind:string -> bool with get
JScript에서는 인덱싱된 속성을 지원하지 않습니다.

매개 변수

  • ViewKind
    형식: String

    필수 요소. A Constants.vsViewKind* 확인 하는 보기의 유형을 나타내는 합니다.

속성 값

형식: Boolean
나타내는 부울 값을 true 프로젝트에에서 열려 있으면 지정된 된 뷰 형식입니다. false 그렇지 않은 경우.

예제

Sub IsOpenExample()
   Dim proj As Project
   Dim projitems As ProjectItems
   Dim msg As String

   ' Reference the current solution and its projects and project items.
   proj = DTE.ActiveSolutionProjects(0)
   projitems = proj.ProjectItems

   ' List properties of the project and its items.
   msg = "Is the item open? " & projitems.Item(1).IsOpen & Chr(13)
   msg = msg & "The project's unique name: " & proj.UniqueName
   ' The following two properties work only if the current project 
   ' contains subprojects. If it does, then uncomment the lines to run 
   ' them.
   ' msg = msg & "The parent project item name: " & proj.ParentProjectItem.Name & Chr(13)
   ' msg = msg & "The subproject name: " & projitems.Item(1).SubProject.Name & Chr(13)
   MsgBox(msg)
End Sub

.NET Framework 보안

참고 항목

참조

ProjectItem 인터페이스

EnvDTE 네임스페이스

기타 리소스

프로젝트 및 솔루션 제어