MindFusion.Wpf Pack Programmer's Guide
OutlookExporter Class
Remarks See Also
 





Provides methods for exporting items, contacts and tasks to Microsoft® Outlook®.

Namespace: MindFusion.Scheduling.Outlook
Assembly: MindFusion.Scheduling.Wpf.Outlook

 Syntax

C#  Copy Code

public class OutlookExporter

Visual Basic  Copy Code

Public Class OutlookExporter

 Remarks

In order to export items from Scheduling for WPF to Microsoft® Outlook®, you create an instance of this class, optionally attach event handlers in order to perform conditional exporting, and invoke one of the export methods, depending on the type of objects you need to export - ExportItems, ExportContacts and ExportTasks.

 Example

The following example demonstrates how to use OutlookExporter:

C#  Copy Code
OutlookExporter exporter = new OutlookExporter(calendar.Schedule);
exporter.ExportItems();
Visual Basic  Copy Code
Dim exporter As New OutlookExporter(calendar.Schedule)
exporter.ExportItems()

 Inheritance Hierarchy

System.Object
    MindFusion.Scheduling.Outlook.OutlookExporter

 See Also

OutlookExporter Members
MindFusion.Scheduling.Outlook Namespace