Versions Compared

Key

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

Overview

Returns sum of specified dateTime and timespan string asynchronously.

Promise<DateTimeOffset> Calendar.AddTimeSpanAsync(dateTime: DateTimeOffset, time: string)

Arguments

Specifies the base date time value.
string time
The time parameter is in the "d.hh:mm:ss" format

Remarks

Please make sure that you are using the right calendar object, since adding time is related with your calendar of choice. You can have more info on Calendar definitions by checking the$Calendarobject.

Example

Code Block
languagejs
//Adds exactly 1 day, 2 hours, 30 minutes and 45 seconds to the current time.
$Calendar.StandardCalendar.AddTimeSpanAsync(new DateTimeOffset(), '1.02:30:45').then(function(newDate) {
console.log(newDate);
});

Examples

Code Block
languagejs
//Adds exactly 1 day, 2 hours, 30 minutes and 45 seconds to the current time.
$Calendar.StandardCalendar.AddTimeSpanAsync(new DateTimeOffset(), '1.02:30:45').then(function(newDate) {
console.log(newDate);
});