====== 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 ====
var ppPane = OutputPane.Clone(strPaneID, bInitialize);
==== Visual Basic Script ====
ppPane = OutputPane.Clone strPaneID, bInitialize
==== C++ ====
CComPtr pPane;
HRESULT hr = OutputPane.Clone(strPaneID, bInitialize, &pPane);
===== See Also =====
[[:scripting:api:output-pane:start|IOutputPane]]
~~NOTOC~~