Syntax
Prt.RegionCount
Description
Contains the count of the number of Tracking Regions found by a prior GetRegionList call.
Example
Dim prt as new Prt
' Get a list of groups from PRT
' and display them one by one in a message box.
prt.GetRegionList
for j = 0 to prt.RegionCount - 1
MsgBox prt.Region(j).Id
next j
PRT Object Model member list. |