Prt.Item (Function)

Syntax

Prt.Item (index)

Description

Returns an item at the specified index from the list which was found by a previous call to GetItemList.

Example

Dim prt as new Prt
' Get a list of item from PRT
'    and display them one by one in a message box.
prt.GetItemList
for j = 0 to prt.ItemCount - 1
      MsgBox prt.Item(j).ItemId
next j