Point.Set (statement)

Syntax Point.Set [downloadPassword]
Description To write the point's value out to the CIMPLICITY project. An optional download password can be supplied.
Comments The values set into the Point using the Value, RawValue, SetArray and SetRawArray methods are not written out to the CIMPLICITY project until they are committed with a Set statement.
Parameter Description
downloadPassword String. (optional) The download password for the project.
Example
sub main()
??????Dim MyPoint as new Point????????' Declare the point object
??????MyPoint.Id = "TANK_LEVEL"??????' Set the Id
??????MyPoint.Value = 10????????????????????' Set the value
??????MyPoint.Set??????????????????????????????????' Write the value out to CIMPLICITY
end sub
See Also Point.SetValue (property, read), PointSet (method)
Note