Specifies the type of a Reminder.
Namespace: MindFusion.Scheduling
File: Enum.js
JavaScript Copy Code |
---|
// enum |
Member name | Description | |
---|---|---|
Exact |
Trigger the reminder at the exact time specified in its Date property.Note: Recurring items cannot have exact reminders. |
|
Leading |
Trigger the reminder at the specified TimeInterval before the item's scheduled start time.Note: Tasks cannot have leading reminders. |
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; var reminder = new p.Reminder(); |