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

AppointmentImporter.AppointmentImporting Event

Occurs before an AppointmentImporter class descendant imports an appointment from iCalendar file or from MS Outlook Calendar storage.

Namespace: DevExpress.XtraScheduler.Exchange

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

Declaration

public event AppointmentImportingEventHandler AppointmentImporting

Event Data

The AppointmentImporting event's data class is AppointmentImportingEventArgs. 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 AppointmentImporting event when implementing custom appointment import procedures. It enables you to decide what to do if conflicting items are found, and select which appointments should be imported.

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

For more information on data exchange with MS Outlook, refer to the Synchronization with Microsoft Outlook article.

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

See Also