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. ====== GetBundle ====== Method of [[:scripting:api:repository:start|IRepository]] ===== Description ===== Get bundle by GUID ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **sID** ==== Return Value ==== * [[:scripting:api:bundle:start|IBundle]] **ppBundle** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppBundle = Repository.GetBundle(sID); </code>==== Visual Basic Script ==== <code vb> ppBundle = Repository.GetBundle sID </code>==== C++ ==== <code cpp> CComPtr<IBundle> pBundle; HRESULT hr = Repository.GetBundle(sID, &pBundle); </code>===== See Also ===== [[:scripting:api:repository:start|IRepository]] ~~NOTOC~~