Contains state information about the appointment that is going to be edited.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class AppointmentEditingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsAppointmentEditingEventArgs
Inherited Members
Constructors
Initializes a new instance of the AppointmentEditingEventArgs class.
public AppointmentEditingEventArgs(RoutedEvent routedEvent, IAppointment appointment, Occurrence occurrence, bool isDeleted = false)
The routed event.
appointmentIAppointmentThe appointment.
occurrenceOccurrenceThe occurrence.
isDeletedboolIs appointment deleted.
Initializes a new instance of the AppointmentEditingEventArgs class.
public AppointmentEditingEventArgs(RoutedEvent routedEvent, object source, IAppointment appointment, Occurrence occurrence)
The routed event.
sourceobjectThe source.
appointmentIAppointmentThe appointment.
occurrenceOccurrenceThe occurrence.
Properties
Gets the appointment that is going to be edited.
public IAppointment Appointment { get; }
The appointment that will be edited.
Gets whether the edited appointment is deleted or not.
public bool IsDeleted { get; }
Gets the occurrence that is going to be edited. If the appointment is not recurrent, the value is null.
public Occurrence Occurrence { get; }
The occurrence that is going to be edited. If the appointment is not recurrent, the value is null.