# Reminders

## Content



Appointment reminders display a **Reminder** dialog box at a specified time before the appointment occurs. In the **Reminder** dialog box, you have the option of dismissing one or more appointments (if multiple appointments are due), opening the appointment, or resetting the reminder to appear again in a set amount of time.

![](https://cdn.mescius.io/document-site-files/images/4c5f07fe-a0aa-4d09-95ef-6685908019cd/graphics/reminder.png)

Reminders can be set when creating an appointment by checking the **Reminder** check box and setting the amount of time before the appointment that you would like the reminder to appear in the **Reminder** time selector.

![](https://cdn.mescius.io/document-site-files/images/4c5f07fe-a0aa-4d09-95ef-6685908019cd/graphics/reminderdropdownlist.png)

To set a reminder for an appointment, you can set ReminderSet property of the <span data-popup-content="This class is available in both \u003ca href=\u0022/componentone/docs/wpf/online-scheduler/\u0022\u003e.NET\u003c/a\u003e and \u003ca href=\u0022C1.WPF.Schedule.4.6.2~C1.C1Schedule.Appointment.html\u0022\u003e.NET Framework\u003c/a\u003e." data-popup-title="Appointment" data-popup-theme="ui-tooltip-green qtip-green">Appointment</span> class to **true** and then based on your requirements, you can set the time interval for the reminder to start prior to the appointment as demonstrated in the following code:

```csharp
// Showing Reminder
appointment.ReminderSet = true;
//remind before one minute
appointment.ReminderTimeBeforeStart = TimeSpan.FromMinutes(1);
```