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);
ppPane = Application.FindPane strPaneID, bActivate
CComPtr<IPane> pPane;
HRESULT hr = Application.FindPane(strPaneID, bActivate, &pPane);