ITrkRegionAgent.Region (method)

method Region
Syntax: Set ITrkRegion* = object.Region ( sName )
Parameters:
sName As String -

The name of the region to return.
Description:
The Region method returns the region object that match the input region name.

Example:
Dim oRegionAgent As Object
Dim oRegions As Object
Dim oRegion As Object

Set oRegionAgent = CreateObject("Tracker.TrkRegionAgent")
Set oRegion = oRegionAgent.Region("REG1")
...