PrtGroup.GetRegionList (Method)

Syntax

PrtGroup.GetRegionList

Description

Gets a list of Tracking regions contained in the Tracking Group. On return, the total number of regions can be obtained from PrtGroup.RegionCount and the individual items may be accessed via the PrtGroup.Region function.

Example

Dim main as new PrtGroup
main.Id = "MAIN"
' Get a list of regions from a PRT group
'    and display them one by one in a message box.
main.GetRegionList
for j = 0 to main.RegionCount - 1
      MsgBox main.Region(j).Id
next j