Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
#datetimezone(
year as number,
month as number,
day as number,
hour as number,
minute as number,
second as number,
offsetHours as number,
offsetMinutes as number
) as datetimezone
About
Creates a datetimezone value from numbers representing the year, month, day, hour, minute, (fractional) second, (fractional) offset-hours, and offset-minutes. Raises an error if these conditions are not true:
- 1 ≤ year ≤ 9999
- 1 ≤ month ≤ 12
- 1 ≤ day ≤ 31
- 0 ≤ hour ≤ 23
- 0 ≤ minute ≤ 59
- 0 ≤ second < 60
- -14 ≤ offset-hours + offset-minutes / 60 ≤ 14