ProjectItem::ExpandView Method ()
Visual Studio 2015
Expands the view of Solution Explorer to show project items.
Assembly: EnvDTE (in EnvDTE.dll)
Use this method to expand the view in Solution Explorer to show project items in the tree view.
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
Show: