The time interval represented by the timespan value expressed in whole and fractional milliseconds.
Syntax
float timespan.TotalMilliseconds
Returns
A float that corresponds to the number of milliseconds represented by the timespan.
float
Sample
timespanSample.rfsvar a = dtl.New(1605, 11, 05, 6, 45, 32, 43); var b = dtl.New(1914, 7, 28, 5, 42, 21, 10); ... trace (b - a).TotalMilliseconds;
timespanSample.rfs
var a = dtl.New(1605, 11, 05, 6, 45, 32, 43); var b = dtl.New(1914, 7, 28, 5, 42, 21, 10); ... trace (b - a).TotalMilliseconds;
(b - a).TotalMilliseconds
9742373808967.0
Figure 387. The trace message output of the script above
Related links
Search Highlighter (On/Off)