Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Overview

Returns a new date time of specified date time at the zone offset.

DateTimeOffset myCalendar.ChangeTimeZone(dateTime: DateTimeOffset, timeZone: string)

Arguments

Specifies the base date time value.
string timeZone
Specifies the new time zone info for date value in "hh:mm" format.

Example

Result is

var currentDate = $Calendar.Today;
$Xml.SetValue('CurrentDate', currentDate);
$Xml.SetValue('ChangedDate', $Calendar.ChangeTimeZone(currentDate, '02:00'));

Example

<CurrentDate>2017-01-25T15:42:47.5389149Z</CurrentDate>
<ChangedDate>2017-01-25T17:42:47.5389149+02:00</ChangedDate>
  • No labels