ITrkRegion.isOutOfSequence (property)

property isOutOfSequence
Syntax: VARIANT_BOOL*pVal = object.isOutOfSequence
object.isOutOfSequence = VARIANT_BOOL*pVal
Description:
The isOutOfSequence property will determine if the items in the region are out of sequence 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.isOutOfSequence
...
...