Note
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ შესვლა ან დირექტორიების შეცვლა.
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
Syntax
DateTime.AddZone(
dateTime as nullable datetime,
timezoneHours as number,
optional timezoneMinutes as nullable number
) as nullable datetimezone
About
Adds timezone information to the dateTime value. The timezone information includes timezoneHours and optionally timezoneMinutes, which specify the desired offset from UTC time.
Example 1
Set the timezone to UTC+7:30 (7 hours and 30 minutes past UTC).
Usage
DateTime.AddZone(#datetime(2010, 12, 31, 11, 56, 02), 7, 30)
Output
#datetimezone(2010, 12, 31, 11, 56, 2, 7, 30)