Specifies the type of a Reminder.
Namespace: MindFusion.Scheduling
File: Enum.js
SyntaxJavaScript
Copy Code
|
|---|
// enum |
Members| 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. |
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