Prt.Group (Function)

Syntax

Prt.Group(index)

Description

Returns a group at a specified index from the list was found by a previous call to GetGroupList.

Example

Dim prt as new Prt
' Get a list of groups from PRT
'    and display them one by one in a message box.
prt.GetGroupList
for j = 0 to prt.GroupCount - 1
      MsgBox prt.Group(j).Id
next j