Minutes Procedure
Creates a
TimeSpan for the specified number of minutes.
Declaration
function Minutes(count as Number) as TimeSpan
Parameters
- count as Number — The number of minutes in the time span.
Return value
TimeSpan — A time span representing
count minutes.
Example
Code
dim x = Minutes(1)
print x
x = x + Minutes(0.5)
print x
Output