Point.GetTimeStampHR (method)

Syntax Point.GetTimeStampHR param1,param2
Description Date. To retrieve the Microsecond timestamp into 2 double 32-bit values. The timestamp indicates the time at which the point's value was read from the PLC.
Param1 Double. High value of the time
Param2 Double. Low value of the time.
Example
Sub Main()
   Dim x as new Point
   Dim qhigh as Double
   Dim  qlow as Double
   a$ = InputBox$("Enter a point id")
   x.Id = a$
   x.GetTimeStampHR(qhigh,qlow)
End Sub
See also Point.QuadValueAsString (property, read), Point.QuadValueAsString (property, write,) Point.SetQuadIntValue (function), Point.TimeStampHR (property, read), GetTimeComponentsHR (function), GetCurTimeHR (function).