====== 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 ==== var ppPane = Application.List(strPaneID, bActivate); ==== Visual Basic Script ==== ppPane = Application.List strPaneID, bActivate ==== C++ ==== CComPtr pPane; HRESULT hr = Application.List(strPaneID, bActivate, &pPane); ===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~