Point.QualityIs_Available (property, read)

Syntax Point.QualityIs_Available
Description Boolean. Returns TRUE if the points value is available, FALSE if the value is unavailable.
Example
Sub Main()
   Dim p as new Point
   p.Id = "VALVE_1"
   p.Get
   if p.QualityIs_Available = FALSE then
      MsgBox "Point is not available"
   End If
End Sub