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 13 Current »

Overview

Returns the current date in the specified time zone.

DateTimeOffset myCalendar.GetToday(timeZone: string)

Arguments

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

Remarks

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

Example

date comparison

$Calendar.GetToday('').toISOString();

Example

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

Example

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

See Also

  • No labels