Syntax
Prt.Region(index)
Description
Returns a region at the specified index from the list which was found by a previous call to GetRegionList.
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. |