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

OutlookAppointmentSynchronizingEventArgs.OutlookAppointment Property

Gets an MS Outlook appointment before synchronization.

Namespace: DevExpress.XtraScheduler.Outlook

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

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.

Tip

A complete sample project is available in the DevExpress Code Examples database at http://www.devexpress.com/example=E699.

The following code snippets (auto-collected from DevExpress Examples) contain references 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