CimEmPointEvent.QualityManual_Mode (property, read)

Syntax CimEMPointEvent.QualityManual_Mode
Description Boolean. Returns TRUE if the point that triggers the event was in Manual Mode, otherwise FALSE.
Example
Sub Main()
   Dim p as new CimEMPointEvent
   Set p = CimGetEmEvent().PointEvent()
   if p.QualityManual_Mode then
     ProcessManualMode
   End if
End Sub