Skip to main content
A newer version of this page is available. .

AppointmentDragEventArgs(Appointment, Appointment, TimeInterval, Resource) Constructor

Initializes a new instance of the AppointmentDragEventArgs class with the specified settings.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.Core.dll

Declaration

public AppointmentDragEventArgs(
    Appointment sourceAppointment,
    Appointment editedAppointment,
    TimeInterval hitInterval,
    Resource hitResource
)

Parameters

Name Type Description
sourceAppointment Appointment

An Appointment object which is the source appointment. This value is assigned to the AppointmentDragEventArgs.SourceAppointment property.

editedAppointment Appointment

An Appointment object which is the appointment being dragged. This value is assigned to the AppointmentDragEventArgs.EditedAppointment property.

hitInterval TimeInterval

A TimeInterval value which is the destination time interval. This value is assigned to the AppointmentDragEventArgs.HitInterval property.

hitResource Resource

A Resource object which is the destination resource. This value is assigned to the AppointmentDragEventArgs.HitResource property.

See Also