SchedulerStorageBase.ExportToOutlook() Method
Exports the data in the storage to the MS Outlook calendar.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v24.1.Core.Desktop.dll
NuGet Package: DevExpress.Scheduler.CoreDesktop
Declaration
Remarks
Use the SchedulerStorageBase.CreateOutlookExporter method if you need to control how appointments are posted to the MS Outlook’s Calendar. Call this method to create an AppointmentExporter object and subscribe to its events to control export operations.
Example
This code snippet shows how to export only selected appointments to MS Outlook. Create a new storage, copy selected appointments to the storage and call the SchedulerDataStorage.ExportToOutlook method.
AppointmentBaseCollection apts = schedulerControl1.SelectedAppointments;
if (apts != null) {
SchedulerStorage storage = new SchedulerStorage();
foreach (Appointment apt in apts) {
Appointment aptCopy = apt.Copy();
storage.Appointments.Add(aptCopy);
}
storage.ExportToOutlook();
}
Implements
See Also