corelibraries-devexpress-dot-xtrascheduler-dot-ui-dot-appointmentformcontrollerbase-f61bf945.md
Gets the appointment pattern currently being edited in the Recurrence form.
Namespace : DevExpress.XtraScheduler.UI
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
public override Appointment EditedPattern { get; }
Public Overrides ReadOnly Property EditedPattern As Appointment
| Type | Description |
|---|---|
| Appointment |
An Appointment object that is the appointment pattern.
|
Use the EditedPattern property to obtain the recurrence pattern currently being edited in the Recurrence form. Subsequently, call the ApplyRecurrence method of the base class so that the changes made to the EditedPattern will be applied to the AppointmentFormControllerBase.EditedAppointmentCopy.
The following code snippets (auto-collected from DevExpress Examples) contain references to the EditedPattern 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.
Appointment editedAptCopy = controller.EditedAppointmentCopy;
Appointment editedPattern = controller.EditedPattern;
Appointment patternCopy = controller.PrepareToRecurrenceEdit();
Appointment editedAptCopy = controller.EditedAppointmentCopy;
Appointment editedPattern = controller.EditedPattern;
Appointment patternCopy = controller.PrepareToRecurrenceEdit();
Dim editedAptCopy As Appointment = controller.EditedAppointmentCopy
Dim editedPattern As Appointment = controller.EditedPattern
Dim patternCopy As Appointment = controller.PrepareToRecurrenceEdit()
Dim editedAptCopy As Appointment = controller.EditedAppointmentCopy
Dim editedPattern As Appointment = controller.EditedPattern
Dim patternCopy As Appointment = controller.PrepareToRecurrenceEdit()
See Also
AppointmentFormControllerBase Class