Skip to main content

SchedulerStorageBase.CreateOutlookImporter() Method

Creates an object which allows you to control how data is imported from MS Outlook’s Calendar.

Namespace: DevExpress.XtraScheduler

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

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public virtual AppointmentImporter CreateOutlookImporter()

Returns

Type Description
AppointmentImporter

An AppointmentImporter object which can import data from MS Outlook’s Calendar.

Remarks

You can import data from Outlook’s Calendar via the SchedulerStorageBase.ImportFromOutlook method.

Use the CreateOutlookImporter method to control how appointments are retrieved from MS Outlook’s Calendar. Call this method to create an AppointmentImporter object, and subscribe to its events to control import operations.

Note

For data synchronization use the AppointmentSynchronizer class descendant instead. It is created by SchedulerStorageBase.CreateOutlookImportSynchronizer method. Refer to Synchronization with Microsoft Outlook article for more information.

See Also