Search
Appointment.setReminder Method
See Also
 






Sets the reminder for this appointment.

Namespace: com.mindfusion.scheduling.model
Package: com.mindfusion.scheduling.model

 Syntax

Java  Copy Code

public void setReminder (
    Reminder value
)

 Parameters

value

An instance of the Reminder class.

 Remarks

If the reminder type is ReminderType.Exact, the ScheduleListener.itemReminderTriggered event is raised at the time set in the reminder's Reminder.getTime property. If the reminder type is ReminderType.Leading, the ScheduleListener.itemReminderTriggered event is raised certain amount of time prior to the item's getStartTime, as specified in the reminder's Reminder.getTimeInterval property.

Note: Recurring items cannot have leading reminders.

 See Also