corelibraries-devexpress-dot-xtrascheduler-dot-exchange-dot-appointmentsynchronizer-283871dc.md
Fires after the synchronization of appointments is complete.
Namespace : DevExpress.XtraScheduler.Exchange
Assembly : DevExpress.XtraScheduler.v25.2.Core.dll
NuGet Package : DevExpress.Scheduler.Core
public event AppointmentSynchronizedEventHandler AppointmentSynchronized
Public Event AppointmentSynchronized As AppointmentSynchronizedEventHandler
The AppointmentSynchronized event's data class is AppointmentSynchronizedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Appointment | Gets the appointment for which the event was raised. Inherited from AppointmentEventArgs. |
Handle this event to specify actions that should be performed after synchronizing the appointments.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AppointmentSynchronized event.
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.
winforms-scheduler-sync-with-outlook/CS/SyncWithOutlook/Form1.cs#L52
// The AppointmentSynchronized event indicates that the operation for a particular appointment is complete.
synchronizer.AppointmentSynchronized += new AppointmentSynchronizedEventHandler(exportSynchronizer_AppointmentSynchronized);
// Specify MS Outlook calendar path.
winforms-scheduler-sync-with-outlook/VB/SyncWithOutlook/Form1.vb#L53
' The AppointmentSynchronized event indicates that the operation for a particular appointment is complete.
AddHandler synchronizer.AppointmentSynchronized, AddressOf exportSynchronizer_AppointmentSynchronized
' Specify MS Outlook calendar path.
See Also