Link Search Menu Expand Document

Date.SetUTCMilliSeconds Method

 
Explanation Set the millisecond part in UTC time.
Although defined for compatibility with JavaScript , the resolution of the Date class is 1 second, so the value does not change when this method is executed.
Call format d.SetUTCMilliSeconds (value)
Return value None
Arguments integer value Specify the number of milliseconds.
Exception None
Example of use
var d = new Date ();
d.SetUTCMilliSeconds  (0);
print (d, "¥ n");
Related item