Skip to main content

AppointmentItemConflictEventArgs.AppointmentClone Property

Gets the clone of the appointment being processed.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public AppointmentItem AppointmentClone { get; }

Property Value

Type Description
AppointmentItem

An AppointmentItem object that is a clone of the AppointmentItemEventArgs.Appointment.

Remarks

Use the AppointmentClone property to access an appointment after an end-user has dragged-and-dropped it onto another time interval, to check for conflicts after this appointment has been dropped. An appointment returned by the AppointmentClone property is a copy of the appointment currently being processed in this event (AppointmentItemEventArgs.Appointment) for a different time interval. The time interval for the appointment clone equals the AppointmentItemConflictEventArgs.Interval value.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AppointmentClone property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also