Scheduler for WPF | ComponentOne
C1.Schedule Namespace / ReminderCollection Class / ReminderRemove Event

In This Topic
    ReminderRemove Event
    In This Topic
    Occurs when a Reminder object has been removed from the collection.
    Syntax
    'Declaration
     
    
    Public Event ReminderRemove As EventHandler(Of ReminderEventArgs)
    public event 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.

    PropertyDescription
    Gets the reminder which the event was raised for.  
    Remarks
    A reminder can be removed from the Reminders collection by any of the following means: - The Reminders collection's Remove method. - The Reminder object's 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