Back to Devexpress

OutlookExchangeHelper.GetOutlookCalendarPaths() Method

corelibraries-devexpress-dot-xtrascheduler-dot-outlook-dot-outlookexchangehelper.md

latest3.5 KB
Original Source

OutlookExchangeHelper.GetOutlookCalendarPaths() Method

Gets full paths of all accessible MS Outlook calendars.

Namespace : DevExpress.XtraScheduler.Outlook

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

NuGet Package : DevExpress.Scheduler.CoreDesktop

Declaration

csharp
public static string[] GetOutlookCalendarPaths()
vb
Public Shared Function GetOutlookCalendarPaths As String()

Returns

TypeDescription
String[]

An array of strings containing MS Outlook calendar paths.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetOutlookCalendarPaths() method.

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.

winforms-scheduler-sync-outlook-calendars/CS/SyncWithOutlook/Form1.cs#L29

csharp
// Obtain the names of MS Outlook calendars.
comboBoxEdit1.Properties.Items.AddRange(OutlookExchangeHelper.GetOutlookCalendarPaths());
synchronizerHelper = new OutlookSynchronizerHelper(schedulerControl1.Storage, "", OutlookEntryIDFieldName);

winforms-scheduler-sync-with-outlook/CS/SyncWithOutlook/Form1.cs#L31

csharp
// Obtain the names of MS Outlook calendars.
comboBoxEdit1.Properties.Items.AddRange(OutlookExchangeHelper.GetOutlookCalendarPaths());

winforms-scheduler-sync-outlook-calendars/VB/SyncWithOutlook/Form1.vb#L31

vb
' Obtain the names of MS Outlook calendars.
comboBoxEdit1.Properties.Items.AddRange(OutlookExchangeHelper.GetOutlookCalendarPaths())
synchronizerHelper = New OutlookSynchronizerHelper(schedulerControl1.Storage, "", OutlookEntryIDFieldName)

winforms-scheduler-sync-with-outlook/VB/SyncWithOutlook/Form1.vb#L33

vb
' Obtain the names of MS Outlook calendars.
comboBoxEdit1.Properties.Items.AddRange(OutlookExchangeHelper.GetOutlookCalendarPaths())

See Also

OutlookExchangeHelper Class

OutlookExchangeHelper Members

DevExpress.XtraScheduler.Outlook Namespace