Provides methods for exporting items, contacts and tasks to Microsoft® Outlook®.
Namespace: MindFusion.Scheduling.Outlook
Assembly: MindFusion.Scheduling.Wpf.Outlook
SyntaxC#
Copy Code
|
|---|
public class OutlookExporter |
Visual Basic
Copy Code
|
|---|
Public Class OutlookExporter |
RemarksIn 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.
ExampleThe 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 HierarchySystem.Object![]()
MindFusion.Scheduling.Outlook.OutlookExporter
See Also