共用方式為


ProjectItem.ExpandView 方法

展開 [方案總管] 的檢視,以顯示專案項目。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
Sub ExpandView
void ExpandView()
void ExpandView()
abstract ExpandView : unit -> unit 
function ExpandView()

備註

使用這個方法展開 [方案總管] 的檢視,以顯示樹狀檢視中的專案項目。

範例

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 安全性

請參閱

參考

ProjectItem 介面

EnvDTE 命名空間

其他資源

控制專案與方案