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. ====== Item ====== Method of [[:scripting:api:completion-set:start|ICompletionSet]] ===== Description ===== Returns item by index ===== Parameters ===== * [[scripting:api:data-type:long|long]] **nIndex** ==== Return Value ==== * [[:scripting:api:completion-item:start|ICompletionItem]] **ppItem** ===== Syntax ===== ==== JavaScript ==== <code javascript> var ppItem = CompletionSet.Item(nIndex); </code>==== Visual Basic Script ==== <code vb> ppItem = CompletionSet.Item nIndex </code>==== C++ ==== <code cpp> CComPtr<ICompletionItem> pItem; HRESULT hr = CompletionSet.get_Item(nIndex, &pItem); </code>===== See Also ===== [[:scripting:api:completion-set:start|ICompletionSet]] ~~NOTOC~~