PrtRegion.StatusPointId (Property Read)

Syntax

PrtRegion.StatusPointId

Description

String property to get the Point ID configured to contain the status point for the region or an empty string if the status point is not configured for the region.

Example

Dim Region as new PrtRegion
Region.Id = "PRODUCTION"
'Get the name of a region's status point and display its
'   contents in a message box.
StatPtId$ = Region.StatusPointId
If StatPtId$ <> "" then
       msgbox "Status: " & PointGet(StatPtId$)
Else
       msgbox "No point configured!"
End If