property isFull | |
Syntax: | VARIANT_BOOL*pVal =
object.isFull object.isFull = VARIANT_BOOL*pVal |
Description: | The isFull property will determine if the region is full by checking the appropriate status bit. 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.isFull ... ... |