Point.SetpointPriv (property, read)

Syntax Point.SetpointPriv
Description Boolean. To determine if the user accessing the point has Setpoint privilege.
Example
sub main()
   Dim MyPoint as new Point
   MyPoint.Id = "TANK_LEVEL"
   if MyPoint.SetpointPriv = FALSE then
      MsgBox "You do not have the setpoint privilege"
   else
      MyPoint.SetValue = InputBox$("Setpoint Value:")
   end if
end sub
See also Point.DownloadPassword (property, read); Point.InUserView (property, read).