ProjectItem.IsOpen Özellik
Proje öğesi bir özel görünüm türünde açık olup olmadığını gösteren bir değeri alır.
Ad alanı: EnvDTE
Derleme: EnvDTE (EnvDTE.dll içinde)
Sözdizimi
'Bildirim
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 : bool
JScript dizini oluşturulan özellikleri desteklemez.
Parametreler
- ViewKind
Tür: System.String
Gerekli.A Constants.vsViewKind* denetlemek için görünüm türünü gösteren.
Özellik Değeri
Tür: System.Boolean
Belirten bir Boole değeri true verili görünüm türünde; proje açıksa falseAksi takdirde.
Örnekler
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 Güvenliği
- Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen güvenilen kod kitaplıklarını kullanma.