Skip to main content

OutlookAppointmentSynchronizingEventArgs.OutlookAppointment Property

Gets an MS Outlook appointment before synchronization.

Namespace: DevExpress.XtraScheduler.Outlook

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public _AppointmentItem OutlookAppointment { get; }

Property Value

Type Description
_AppointmentItem

An _AppointmentItem object representing the MS Outlook appointment.

Remarks

By handling the AppointmentSynchronizer.AppointmentSynchronizing event of classes derived from the AppointmentSynchronizer class, you can change properties of an appointment in MS Outlook or decide whether to cancel the process.

To get access to the OutlookAppointment property, you should cast the AppointmentSynchronizedEventArgs object to the OutlookAppointmentSynchronizingEventArgs type.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the OutlookAppointment 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.

See Also