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. ====== Clone ====== Method of [[:scripting:api:output-pane:start|IOutputPane]] ===== Description ===== Creates a copy of the output pane ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strPaneID** * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bInitialize** = VARIANT_FALSE (optional) ==== Return Value ==== * [[:scripting:api:output-pane:start|IOutputPane]] **ppPane** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppPane = OutputPane.Clone(strPaneID, bInitialize); </code>==== Visual Basic Script ==== <code vb> ppPane = OutputPane.Clone strPaneID, bInitialize </code>==== C++ ==== <code cpp> CComPtr<IOutputPane> pPane; HRESULT hr = OutputPane.Clone(strPaneID, bInitialize, &pPane); </code>===== See Also ===== [[:scripting:api:output-pane:start|IOutputPane]] ~~NOTOC~~