Back to Devexpress

AppointmentSynchronizer.AppointmentSynchronized Event

corelibraries-devexpress-dot-xtrascheduler-dot-exchange-dot-appointmentsynchronizer-283871dc.md

latest3.4 KB
Original Source

AppointmentSynchronizer.AppointmentSynchronized Event

Fires after the synchronization of appointments is complete.

Namespace : DevExpress.XtraScheduler.Exchange

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

NuGet Package : DevExpress.Scheduler.Core

Declaration

csharp
public event AppointmentSynchronizedEventHandler AppointmentSynchronized
vb
Public Event AppointmentSynchronized As AppointmentSynchronizedEventHandler

Event Data

The AppointmentSynchronized event's data class is AppointmentSynchronizedEventArgs. The following properties provide information specific to this event:

PropertyDescription
AppointmentGets the appointment for which the event was raised. Inherited from AppointmentEventArgs.

Remarks

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

csharp
// 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

vb
' 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

AppointmentSynchronizing

AppointmentSynchronizer Class

AppointmentSynchronizer Members

DevExpress.XtraScheduler.Exchange Namespace