Skip to main content

MVCxICalendarExportSettings.AppointmentExporting Property

Occurs before an AppointmentExporter class or its descendant exports an appointment to a iCalendar file or to MS Outlook Calendar storage.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public AppointmentExportingEventHandler AppointmentExporting { get; set; }

Property Value

Type Description
AppointmentExportingEventHandler

A AppointmentExportingEventHandler delegate method allowing you to implement custom processing.

Property Paths

You can access this nested property as listed below:

Object Type Path to AppointmentExporting
MVCxSchedulerExportSettings
.ICalendar .AppointmentExporting

Remarks

Handle the AppointmentExporting event for AppointmentExporter descendants when implementing appointment export. It enables you to decide what to do if conflicting items are found, and select which appointments should be exported.

To know more about iCalendar support, refer to the corresponding iCalendar Support article.

See Also