PrtGroup.Item (Function)

Syntax

PrtGroup.Item(index )

Description

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

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