Back to Devexpress

ISupportCalendarFolders.CalendarFolderName Property

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

latest3.5 KB
Original Source

ISupportCalendarFolders.CalendarFolderName Property

Gets or sets the name of the calendar folder in MS Outlook.

Namespace : DevExpress.XtraScheduler.Outlook

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

NuGet Package : DevExpress.Scheduler.CoreDesktop

Declaration

csharp
string CalendarFolderName { get; set; }
vb
Property CalendarFolderName As String

Property Value

TypeDescription
String

A string containing the calendar name.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the CalendarFolderName 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.

winforms-scheduler-sync-outlook-calendars/CS/SyncWithOutlook/OutlookSynchronizerHelper.cs#L33

csharp
_calendarFolder = value;
if(importSynchronizer != null) (importSynchronizer as ISupportCalendarFolders).CalendarFolderName = _calendarFolder;
if(exportSynchronizer != null) (exportSynchronizer as ISupportCalendarFolders).CalendarFolderName = _calendarFolder;

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

csharp
// Specify MS Outlook calendar path.
((ISupportCalendarFolders)synchronizer).CalendarFolderName = comboBoxEdit1.EditValue.ToString();
// Perform the operation.

winforms-scheduler-sync-outlook-calendars/VB/SyncWithOutlook/OutlookSynchronizerHelper.vb#L45

vb
If importSynchronizer IsNot Nothing Then
    TryCast(importSynchronizer, ISupportCalendarFolders).CalendarFolderName = _calendarFolder
End If

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

vb
' Specify MS Outlook calendar path.
DirectCast(synchronizer, ISupportCalendarFolders).CalendarFolderName = comboBoxEdit1.EditValue.ToString()
' Perform the operation.

See Also

ISupportCalendarFolders Interface

ISupportCalendarFolders Members

DevExpress.XtraScheduler.Outlook Namespace