Point.QualityDisable_Write (property, read)

Syntax Point.QualityDisable_Write
Description Boolean. Returns TRUE if setpoints have been disabled for the point, FALSE otherwise.
Example
Sub Main()
   Dim p as new Point
   p.Id = "VALVE_1"
   p.Get
   if p.QualityDisable_Write Then
      MsgBox "Writing disabled for point"
   End If
End Sub