Minutes Procedure

Creates a TimeSpan for the specified number of minutes.
Declaration
function Minutes(count as Number) as TimeSpan

Parameters

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
00:01:00.000
00:01:30.000