Back to Devexpress

DXOutlook365Sync.CustomizeEventToAppointment Event

windowsforms-devexpress-dot-xtrascheduler-dot-microsoft365calendar-dot-dxoutlook365sync-e59bd7f3.md

latest3.1 KB
Original Source

DXOutlook365Sync.CustomizeEventToAppointment Event

Allows you to customize an appointment when the corresponding event is imported (or merged) from an Outlook 365 calendar.

Namespace : DevExpress.XtraScheduler.Microsoft365Calendar

Assembly : DevExpress.XtraScheduler.v25.2.Microsoft365Calendar.dll

NuGet Package : DevExpress.Scheduler.Core.Desktop.Microsoft365Calendar

Declaration

csharp
public event EventHandler<ConvertEventArgs> CustomizeEventToAppointment
vb
Public Event CustomizeEventToAppointment As EventHandler(Of ConvertEventArgs)

Event Data

The CustomizeEventToAppointment event's data class is ConvertEventArgs. The following properties provide information specific to this event:

PropertyDescription
AppointmentGets a user appointment in the Scheduler control.
EventGets an Outlook 365 event.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CustomizeEventToAppointment event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-scheduler-synchronize-appointments-with-outlook-365/CS/Outlook365Sync/MainWindow.xaml.cs#L17

csharp
dXOutlook365Sync.CustomizeAppointmentToEvent += OnCustomizeAppointmentToEvent;
    dXOutlook365Sync.CustomizeEventToAppointment += OnCustomizeEventToAppointment;
}

See Also

Synchronization with Microsoft 365 Calendars

CustomizeAppointmentToEvent

DXOutlook365Sync Class

DXOutlook365Sync Members

DevExpress.XtraScheduler.Microsoft365Calendar Namespace