ITrkRegion.isOutLocked (property)

property isOutLocked
Syntax: VARIANT_BOOL*pVal = object.isOutLocked
object.isOutLocked = VARIANT_BOOL*pVal
Description:
The isOutLocked property will determine if the region is out lock. If out lock is TRUE then items cannot be moved out of 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)
x = oRegion.isOutLocked
...
...