Search
Reminder.type Property
See Also
 






Gets or sets the type of this Reminder.

Namespace: MindFusion.Scheduling
File: Reminder.js

 Syntax

JavaScript  Copy Code

get type() {}

 Property Value

One of the ReminderType enumeration values.

 Example

The 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;
// add an item with reminder
item = new p.Item();
item.startTime = p.DateTime.addMinutes(date, 2);
item.endTime = p.DateTime.addHours(item.startTime, 2);
item.subject = "GYM";

var reminder = new p.Reminder();
reminder.message = "Speaking of the " + item.subject + ", go!!";
reminder.type = p.ReminderType.Leading;
reminder.timeInterval = p.TimeSpan.fromMinutes(1);
item.reminder = reminder;

 See Also