Skip to main content
A newer version of this page is available. .

OutlookAppointmentExportingEventArgs Class

Provides data for the AppointmentExporter.AppointmentExporting event of the OutlookExport class.

Namespace: DevExpress.XtraScheduler.Outlook

Assembly: DevExpress.XtraScheduler.v20.2.Core.Desktop.dll

NuGet Packages: DevExpress.Scheduler.CoreDesktop, DevExpress.WindowsDesktop.Scheduler.CoreDesktop

Declaration

[CLSCompliant(false)]
public class OutlookAppointmentExportingEventArgs :
    AppointmentExportingEventArgs

Remarks

You should explicitly cast the passed object of a AppointmentExportingEventArgs type to OutlookAppointmentExportingEventArgs within the event handler. Then, you can access the Outlook appointment via the OutlookAppointmentExportingEventArgs.OutlookAppointment property, and decide whether this item should be processed or not. To cancel processing, set the AppointmentCancelEventArgs.Cancel to true.

See Also