Days Procedure
Creates a
TimeSpan for the specified number of days.
Declaration
function Days(count as Number) as TimeSpan
Parameters
- count as Number — The number of days in the time span.
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