Days Procedure

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

Parameters

Return value

TimeSpan — A time span representing count days.

Example

Code
dim x = Days(1)
print x
x = x + Days(0.5)
print x
Output
1:00:00:00.000
1:12:00:00.000