Prt.GroupCount (Property Read)

Syntax

Prt.GroupCount

Description

Contains the number of Groups found by a prior 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