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