Method of IApplication
Find existing tool pane
var ppPane = Application.FindPane(strPaneID, bActivate);
==== Visual Basic Script ====
ppPane = Application.FindPane strPaneID, bActivate
==== C++ ====
CComPtr<IPane> pPane; HRESULT hr = Application.FindPane(strPaneID, bActivate, &pPane);
===== See Also ===== IApplication