Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Returns the current date in the specified time zone.

DateTimeOffset Calendar.GetToday(timeZone: string)

Arguments

string timeZone
Specifies the target time zone for current date in "hh:mm" format. Optional, if not specified system timezone information is used.

Remarks

You may use toISOString() method for comparisons on Xml Database. Such as;

Example

date comparison

Code Block
languagejs
$Calendar.GetToday('').toISOString();

Example

Code Block
languagejs
$Xml.SetValue('Date1', $Calendar.GetToday(''));
$Xml.SetValue('Date2', $Calendar.GetToday('02:00'));

Example

Code Block
languagejs
<Date1>2017-01-25T16:04:40.5625645Z</Date1>
<Date2>2017-01-25T18:04:40.5625645+02:00</Date2>

Examples

date comparison
Code Block
languagejs
$Calendar.GetToday('').toISOString();
Code Block
languagejs
$Xml.SetValue('Date1', $Calendar.GetToday(''));
$Xml.SetValue('Date2', $Calendar.GetToday('02:00'));
Code Block
languagejs
<Date1>2017-01-25T16:04:40.5625645Z</Date1>
<Date2>2017-01-25T18:04:40.5625645+02:00</Date2>