Provides methods for exporting items, contacts and tasks to Microsoft® Outlook®.
Namespace: MindFusion.Scheduling.Outlook
Assembly: MindFusion.Scheduling.Wpf.Outlook
C#
![]() |
---|
public class OutlookExporter |
Visual Basic
![]() |
---|
Public Class OutlookExporter |
In order to export items from MindFusion.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.
The following example demonstrates how to use OutlookExporter:
C#
![]() |
---|
OutlookExporter exporter = new OutlookExporter(calendar.Schedule); exporter.ExportItems(); |
Visual Basic
![]() |
---|
Dim exporter As New OutlookExporter(calendar.Schedule) exporter.ExportItems() |
System.Object
MindFusion.Scheduling.Outlook.OutlookExporter