ProjectItem.ExpandView Yöntem
Görünümü genişletir Solution Explorer proje öğeleri göstermek için.
Ad alanı: EnvDTE
Derleme: EnvDTE (EnvDTE.dll içinde)
Sözdizimi
'Bildirim
Sub ExpandView
void ExpandView()
void ExpandView()
abstract ExpandView : unit -> unit
function ExpandView()
Notlar
Görünümü genişletmek için bu yöntemi kullanın Solution Explorer proje öğeleri ağaç görünümünde göstermek için.
Örnekler
Sub ExpandViewExample()
Dim proj As Project
Dim projitems As ProjectItems
' Reference the current solution and its projects and project items.
proj = DTE.ActiveSolutionProjects(0)
projitems = proj.ProjectItems
' Expand the first project to show all of its items.
projitems.Item(1).ExpandView()
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.