Metodo ProjectItem.ExpandView
Espande la visualizzazione di Esplora soluzioni per mostrare gli elementi del progetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
Sub ExpandView
void ExpandView()
void ExpandView()
abstract ExpandView : unit -> unit
function ExpandView()
Note
Utilizzare questo metodo per espandere la visualizzazione in Esplora per mostrare gli elementi di progetto nella visualizzazione albero.
Esempi
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
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.