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. ====== List ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Return list pane by name ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strPaneID** * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bActivate** = VARIANT_FALSE (optional) ==== Return Value ==== * [[:scripting:api:list-pane:start|IListPane]] **ppPane** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppPane = Application.List(strPaneID, bActivate); </code>==== Visual Basic Script ==== <code vb> ppPane = Application.List strPaneID, bActivate </code>==== C++ ==== <code cpp> CComPtr<IListPane> pPane; HRESULT hr = Application.List(strPaneID, bActivate, &pPane); </code>===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~