Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Output ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Return output pane by name ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strPaneID** = %%""%% (optional) * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bActivate** = VARIANT_FALSE (optional) ==== Return Value ==== * [[:scripting:api:output-pane:start|IOutputPane]] **ppPane** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppPane = Application.Output(strPaneID, bActivate); </code>==== Visual Basic Script ==== <code vb> ppPane = Application.Output strPaneID, bActivate </code>==== C++ ==== <code cpp> CComPtr<IOutputPane> pPane; HRESULT hr = Application.Output(strPaneID, bActivate, &pPane); </code>===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~