PrtRegion.Status (Property Read/Write)

Syntax

PrtRegion.Status

Description

Integer property to get or set the region's status mask.

Example

Dim Region as new PrtRegion
Region.Id = "PRODUCTION"
Region.GetData
'Perform a quick check for any status bits for a region being
'    set and display the results in a message box.
If Region.Status > 0 then
       msgbox "One or more status bits are set."
Else
       msgbox "No status bits set."
End If