ITrkRegion.MaxLocations (read-only property)

property MaxLocations
Syntax: long*pVal = object.MaxLocations
Description:
The MaxLocations method returns the number of locations occupied in the region.

Example:

Dim oRegionAgent As Object
Set oRegionAgent = CreateObject("Tracker.TrkRegionAgent")
Dim oRegions As Object
Dim oRegion As Object
oRegionAgent.ProjectID = "PA1"
Set oRegions = oRegionAgent.Execute
Set oRegion = oRegions.Item(1)
MsgBox oRegion.MaxLocations
...
...