Project.ParentProjectItem Özellik
Alır bir ProjectItem ana proje içinde iç içe geçmiş projesi için nesne.
Ad alanı: EnvDTE
Derleme: EnvDTE (EnvDTE.dll içinde)
Sözdizimi
'Bildirim
ReadOnly Property ParentProjectItem As ProjectItem
ProjectItem ParentProjectItem { get; }
property ProjectItem^ ParentProjectItem {
ProjectItem^ get ();
}
abstract ParentProjectItem : ProjectItem
function get ParentProjectItem () : ProjectItem
Özellik Değeri
Tür: EnvDTE.ProjectItem
ProjectItem nesnesi
Notlar
Visual StudioProjeler Kurumsal şablonlar gibi bazı projeler için diğer projeler olarak öğeler, özellikle alt projeler olarak içerecek şekilde verir. Bu projelerin her biri kurumsal uygulama için bir şablon ve onu ekler Visual Basic ve Visual C++ alt projeler. Böyle bir proje arabirimi veya kaydırılan proje sonra varsa, ParentProjectItem döndüren ProjectItem kaydırılmış proje şablonu proje madde için nesne.
Örnekler
Sub ParentProjectItemExample()
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.