Method of IApplication
Return output pane by name
var ppPane = Application.Output(strPaneID, bActivate);
==== Visual Basic Script ====
ppPane = Application.Output strPaneID, bActivate
==== C++ ====
CComPtr<IOutputPane> pPane; HRESULT hr = Application.Output(strPaneID, bActivate, &pPane);
===== See Also ===== IApplication