Point.QualityLast_Upd_Man (property, read)

Syntax Point.QualityLast_Upd_Man
Description Boolean. Returns TRUE if the current value of the point came from a manual update rather than a device read.
Example
Sub Main()
   Dim p as new Point
   p.Id = "VALVE_1"
   p.Get
   if p.QualityLast_Upd_Man then
      MsgBox "Last Update Manual"
   End If
End Sub