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.SwitchZone(dateTimeZone as nullable datetimezone, timezoneHours as number, optional timezoneMinutes as nullable number) as nullable datetimezone
About
Changes timezone information to on the datetimezone value dateTimeZone
to the new timezone information provided by timezoneHours
and optionally timezoneMinutes
. If dateTimeZone
does not have a timezone component, an exception is thrown.
Example 1
Change timezone information for #datetimezone(2010, 12, 31, 11, 56, 02, 7, 30) to 8 hours.
Usage
DateTimeZone.SwitchZone(#datetimezone(2010, 12, 31, 11, 56, 02, 7, 30), 8)
Output
#datetimezone(2010, 12, 31, 12, 26, 2, 8, 0)
Example 2
Change timezone information for #datetimezone(2010, 12, 31, 11, 56, 02, 7, 30) to -30 minutes.
Usage
DateTimeZone.SwitchZone(#datetimezone(2010, 12, 31, 11, 56, 02, 7, 30), 0, -30)
Output
#datetimezone(2010, 12, 31, 3, 56, 2, 0, -30)