PrtGroup.ItemCount (Property Read)

Syntax

PrtGroup.ItemCount

Description

Integer property contains the number of items find by a previous GetItemList or LocateItem call.

Example

Dim main as new Prtgroup
main.Id = "MAIN"
' Get a list of items from group "MAIN"
'    and display them one by one in a message box.
main.GetItemList
for j = 0 to main.ItemCount - 1
      MsgBox main.Item(j).ItemId
next j