Skip to main content

AppointmentExporter.AppointmentExporting Event

Occurs before an AppointmentExporter class or its descendant exports an appointment to iCalendar file or to MS Outlook Calendar storage.

Namespace: DevExpress.XtraScheduler.Exchange

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

NuGet Package: DevExpress.Scheduler.Core

Declaration

public event AppointmentExportingEventHandler AppointmentExporting

Event Data

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

Property Description
Appointment Gets the appointment for which the event was raised. Inherited from AppointmentEventArgs.
Cancel Gets or sets whether the operation performed on the processed event should be cancelled. Inherited from AppointmentCancelEventArgs.

Remarks

Handle the AppointmentExporting event for AppointmentExporter descendants when implementing appointment export. It enables you to decide what to do if conflicting items are found, and select which appointments should be exported.

To know more about iCalendar support refer to the corresponding iCalendar Support article.

For more information on data exchanging with MS Outlook calendar review the Synchronization with Microsoft Outlook article.

See Also