Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Outlook365CalendarMergeEventArgs.ActionType Property

Gets or sets a merge action.

Namespace: DevExpress.XtraScheduler.Microsoft365Calendar

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

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

#Declaration

public MergeActionType ActionType { get; set; }

#Property Value

Type Description
MergeActionType

A value that specifies the merge action.

Available values:

Name Description
DoNothing

Do nothing.

InsertOrUpdateAppointment

Insert or update an appointment.

InsertOrUpdateEvent

Insert or update an event.

DeleteAppointment

Delete an appointment.

DeleteEvent

Delete an event.

#Remarks

The following example demonstrates how to import Outlook 365 events that have not started.

using DevExpress.XtraScheduler.Microsoft365Calendar;

dxOutlook365Sync1.MergeSingleItem += DxOutlook365Sync1_MergeSingleItem;
private void DxOutlook365Sync1_MergeSingleItem(object sender, Outlook365CalendarMergeEventArgs e) {
    if(e.OutlookEvent != null && e.OutlookEvent.Start.ToDateTime() < DateTime.Now)
        e.ActionType = MergeActionType.DoNothing;
}

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

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.

See Also