Prt.GetGroupList (Method)

Syntax

Prt.GetGroupList

Description

Gets a list of all PRT groups. After calling the method, the GroupCount and Group routines may be used to access the returned information.)

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