Prt.ItemCount (Property Read)

Syntax

Prt.ItemCount

Description

Contains the number of items find by a previous GetItemList or LocateItem call.

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