scripting:api:application:find-pane

FindPane

Method of IApplication

Find existing tool pane

  • BSTR strPaneID = "" (optional)
  • VARIANT_BOOL bActivate = VARIANT_FALSE (optional)
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