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

AppointmentModificationControllerBase.EditedAppointmentCopy Property

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

Namespace: DevExpress.XtraScheduler.Native

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

Declaration

public virtual Appointment EditedAppointmentCopy { get; }

Property Value

Type Description
Appointment

An Appointment object.

Remarks

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

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

See Also