'Declaration Public Event ReminderRemove As System.EventHandler(Of ReminderEventArgs)
public event System.EventHandler<ReminderEventArgs> ReminderRemove
Event Data
The event handler receives an argument of type ReminderEventArgs containing data related to this event. The following ReminderEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Reminder | Gets the reminder which the event was raised for. |
Remarks
A reminder can be removed from the C1.Schedule.ReminderCollection collection by any of the following means:
- The C1.Schedule.ReminderCollection's Remove method.
- The C1.Schedule.Reminder.Dismiss method.
- When the user clicks the Dismiss button.
- When a user turns off a meeting reminder from within the associated item.
- When a user deletes an item that contains a reminder.
See Also