Scheduler for WinRT
ReminderFire Event


Occurs when a reminder set on an appointment fires, before the Reminders dialog will be shown on a screen or activated.
Syntax
'Declaration
 
<C1DescriptionAttribute("アラームが実行される前に発生します。")>
<C1CategoryAttribute()>
Public Event ReminderFire As EventHandler(Of ReminderActionEventArgs)
'Usage
 
Dim instance As C1Scheduler
Dim handler As EventHandler(Of ReminderActionEventArgs)
 
AddHandler instance.ReminderFire, handler
[C1Description("アラームが実行される前に発生します。")]
[C1Category()]
public event EventHandler<ReminderActionEventArgs> ReminderFire
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
HandledGets or sets a value that indicates the present state of the event handling.  
OriginalSource (Inherited from Windows.UI.Xaml.RoutedEventArgs)
ReminderGets a Reminder object.  
Remarks
Use this event to implement your own reaction on this event, instead of activating a standard Reminders window.

To prevent activating a standard window, set the e.Handled event argument to True.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1Scheduler Class
C1Scheduler Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.