Point.TimeStamp (property, read)

Syntax Point.TimeStamp
Description Date. To retrieve the timestamp into a Basic Date Object. The timestamp indicates the time at which the point's value was read from the PLC.
Example
Sub Main()
??????Dim x as new Point
??????a$ = InputBox$("Enter a point id")
??????x.Id = a$
??????x.OnChange
top :
??????x.GetNext
??????Trace str$(x.TimeStamp) & " " & x.Value
??????goto top
End Sub
See also Point.Get (method); Point.GetNext (method).