PrtService.GetRegionList (Method)

Syntax

PrtService.GetRegionList

Description

Gets a list of Tracking regions contained in the PRT Service. Upon return, the total region count may be obtained from RegionCount, and the individual regions may be accessed via the Region function.

Example

Dim ServiceA as new PrtService
ServiceA.Id = "SERVICE_A"
' Get a list of regions in the service and display them one by
'   one in a message box.
ServiceA.GetRegionList
for j = 0 to ServiceA.RegionCount - 1
      MsgBox ServiceA.Region(j).Id
next j