====== Item ======
Method of [[:scripting:api:panes:start|IPanes]]
===== Description =====
Returns item by index
===== Parameters =====
* [[scripting:api:data-type:long|long]] **nIndex**
==== Return Value ====
* [[:scripting:api:pane:start|IPane]] **ppPane**
===== Syntax =====
==== JavaScript ====
var ppPane = Panes.Item(nIndex);
==== Visual Basic Script ====
ppPane = Panes.Item nIndex
==== C++ ====
CComPtr pPane;
HRESULT hr = Panes.get_Item(nIndex, &pPane);
===== See Also =====
[[:scripting:api:panes:start|IPanes]]
~~NOTOC~~