Scheduler for UWP | ComponentOne
C1.Xaml.Schedule Namespace / C1Scheduler Class / ReminderSnooze Event

In This Topic
    ReminderSnooze Event
    In This Topic
    Occurs when a C1.C1Schedule.Reminder object is snoozed.
    Syntax
    'Declaration
     
    
    <C1DescriptionAttribute("C1Scheduler.ReminderSnooze", "Fired when Reminder is snoozed.")>
    <C1CategoryAttribute("Reminder")>
    Public Event ReminderSnooze As EventHandler(Of ReminderActionEventArgs)
    [C1Description("C1Scheduler.ReminderSnooze", "Fired when Reminder is snoozed.")]
    [C1Category("Reminder")]
    public event EventHandler<ReminderActionEventArgs> ReminderSnooze
    Event Data

    The event handler receives an argument of type ReminderActionEventArgs containing data related to this event. The following ReminderActionEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets a value that indicates the present state of the event handling.  
    (Inherited from Windows.UI.Xaml.RoutedEventArgs)
    Gets a Reminder object.  
    See Also