ProjectItem.ExpandView, méthode
Développe la vue de l'Explorateur de solutions pour afficher les éléments de projet.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Sub ExpandView
void ExpandView()
void ExpandView()
abstract ExpandView : unit -> unit
function ExpandView()
Notes
Utilisez cette méthode pour développer la vue dans l'Explorateur de solutions afin d'afficher les éléments de projet dans l'arborescence.
Exemples
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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.