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

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.v19.1.Core.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateOutlookImporter() method.

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