Provides methods for importing items, contacts and tasks from Microsoft® Outlook®.
Namespace: MindFusion.Scheduling.Outlook
Assembly: MindFusion.Scheduling.Wpf.Outlook
SyntaxC#
Copy Code
|
|---|
public class OutlookImporter |
Visual Basic
Copy Code
|
|---|
Public Class OutlookImporter |
RemarksIn order to import items to Scheduling for WPF from Microsoft® Outlook®, you create an instance of this class, optionally attach event handlers in order to perform conditional importing, and invoke one of the import methods, depending on the type of objects you need to import - ImportItems, ImportContacts and ImportTasks.
ExampleThe following example demonstrates how to use OutlookImporter:
C#
Copy Code
|
|---|
| OutlookImporter importer = new OutlookImporter(calendar.Schedule); importer.ImportItems(); |
Visual Basic
Copy Code
|
|---|
| Dim importer As New OutlookImporter(calendar.Schedule) importer.ImportItems() |
Inheritance HierarchySystem.Object![]()
MindFusion.Scheduling.Outlook.OutlookImporter
See Also