Point.TimeStampHR (property, read)

Syntax Point.TimeStampHR
Description Date. To retrieve the Microsecond timestamp into a string 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.TimeStampHR) & " " & x.Value
??????goto top
End Sub
See also Point.Get (method); Point.GetNext (method), Point.GetTimeStampHR (method).