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
24:00:00.000
36:00:00.000