CimEmPointEvent.QualityIs_In_Range (property, read)

Syntax CimEMPointEvent.QualityIs_In_Range
Description Boolean. Returns TRUE if the value of the point that triggered the event is in range, FALSE if the point is out of range. When a point is out of range its value is unavailable.
Example
Sub Main()
??????Dim p as new CimEMPointEvent
??????Set p = CimGetEmEvent().PointEvent()
??????if p.QualityIs_In_Range = FALSE then
????????????DoSomething
??????End If
End Sub