Class AppointmentCreatingEventArgs
Contains state information about the new appointment that is going to be created.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class AppointmentCreatingEventArgs : CancelRoutedEventArgs
Constructors
AppointmentCreatingEventArgs(RoutedEvent, Object, IAppointment)
Initializes a new instance of the AppointmentCreatingEventArgs class.
Declaration
public AppointmentCreatingEventArgs(RoutedEvent routedEvent, object source, IAppointment appointment)
Parameters
RoutedEvent
routedEvent
The routed event identifier for this instance of the System.Windows.RoutedEventArgs class. |
System.Object
source
An alternate source that will be reported when the event is handled. |
IAppointment
appointment
|
AppointmentCreatingEventArgs(RoutedEvent, IAppointment)
Initializes a new instance of the AppointmentCreatingEventArgs class.
Declaration
public AppointmentCreatingEventArgs(RoutedEvent routedEvent, IAppointment appointment)
Parameters
RoutedEvent
routedEvent
The routed event. |
IAppointment
appointment
|
Properties
Appointment
Gets the newly created appointment. You can use this property to initialize the appointment.
Declaration
public IAppointment Appointment { get; }
Property Value
IAppointment
The new appointment was created. |