Point.UserFlags (property, read)

Syntax Point.UserFlags
Description Long. Returns the value of the 16-bit user defined flags for the point.
Example
Sub Main()
   Dim p as new Point
   p.Id = "VALVE_1"
   p.Get
   MsgBox cstr(p.UserFlags)
End Sub