====== Item ======
Method of [[:scripting:api:bundles:start|IBundles]]
===== Description =====
Returns item by index
===== Parameters =====
* [[scripting:api:data-type:long|long]] **nIndex**
==== Return Value ====
* [[:scripting:api:bundle:start|IBundle]] **ppBundle**
===== Syntax =====
==== JavaScript ====
var ppBundle = Bundles.Item(nIndex);
==== Visual Basic Script ====
ppBundle = Bundles.Item nIndex
==== C++ ====
CComPtr pBundle;
HRESULT hr = Bundles.get_Item(nIndex, &pBundle);
===== See Also =====
[[:scripting:api:bundles:start|IBundles]]
~~NOTOC~~