Gets or sets how much time before the item's scheduled start time to raise the event that triggers the Reminder.
Namespace: MindFusion.Scheduling
Assembly: Reminder.js
SyntaxJavaScript
Copy Code
|
|---|
get timeInterval() {} |
A TimeSpan instance.
RemarksThe value of this property is considered only if the type of the reminder is set to ReminderType.Leading.
ExampleThe following code creates a schedule item with a Reminder that starts one minute before the event is due to take place:
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; var reminder = new p.Reminder(); |
See Also