Point.DownloadPassword (property, read)

Syntax Point.DownLoadPassword
Description Boolean. To determine if a download password is required to set the point.
Example
' Prompt the user for the download password if required to set
' the point.
Sub Main()
   Dim p as new Point
   p.Id = "CP_UINT"
   p.Value = 10
   if p.DownLoadPassword then
      pass$ = AskPassword("DownLoad Password:")
      p.Set pass$
   else
      p.Set
   end if
End Sub
See also Point.SetPointPriv (property, read); Point.InUserView (property, read).