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