Skip to main content

AppointmentFormControllerBase.EditedAppointmentCopy Property

Gets the copy of the appointment currently being edited in the form.

Namespace: DevExpress.XtraScheduler.UI

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

#Declaration

public Appointment EditedAppointmentCopy { get; }

#Property Value

Type Description
Appointment

An Appointment object which is a copy of the appointment.

#Remarks

When an appointment is edited in the Edit Appointment form using the AppointmentFormControllerBase object, all changes are applied to its copy. This copy is accessed via the EditedAppointmentCopy property.

To apply all changes made to the copy of the appointment to the source appointment, call the AppointmentFormControllerBase.ApplyChanges method.

See Also