'Declaration
Public Event UserEditingAppointment As EventHandler(Of AppointmentActionEventArgs)
public event EventHandler<AppointmentActionEventArgs> UserEditingAppointment
Event Data
The event handler receives an argument of type AppointmentActionEventArgs containing data related to this event. The following AppointmentActionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Appointment | Gets an Appointment object. |
Handled | (Inherited from System.Windows.RoutedEventArgs) |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Source | (Inherited from System.Windows.RoutedEventArgs) |
Remarks
Use this event to make custom settings to an editing appointment before it appears on the screen and/or to implement your own reaction on this event, instead of activating a standard dialog window.
In order to change appointment properties before showing the dialog on a screen, use the appointment object referenced by the e.Appointment event argument.
To prevent activating a standard dialog window, set the e.Handled event argument to True.
See Also