The time interval represented by the timespan value expressed in whole and fractional seconds.
Syntax
float timespan.TotalSeconds
Returns
A float that corresponds to the number of seconds 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).TotalSeconds;
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).TotalSeconds;
(b - a).TotalSeconds
9742373808.967
Figure 386. The trace message output of the script above
Related links
Search Highlighter (On/Off)