corelibraries-devexpress-dot-xtrascheduler-dot-outlook-dot-isupportcalendarfolders.md
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
string CalendarFolderName { get; set; }
Property CalendarFolderName As String
| Type | Description |
|---|---|
| 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
_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
// Specify MS Outlook calendar path.
((ISupportCalendarFolders)synchronizer).CalendarFolderName = comboBoxEdit1.EditValue.ToString();
// Perform the operation.
winforms-scheduler-sync-outlook-calendars/VB/SyncWithOutlook/OutlookSynchronizerHelper.vb#L45
If importSynchronizer IsNot Nothing Then
TryCast(importSynchronizer, ISupportCalendarFolders).CalendarFolderName = _calendarFolder
End If
winforms-scheduler-sync-with-outlook/VB/SyncWithOutlook/Form1.vb#L55
' Specify MS Outlook calendar path.
DirectCast(synchronizer, ISupportCalendarFolders).CalendarFolderName = comboBoxEdit1.EditValue.ToString()
' Perform the operation.
See Also
ISupportCalendarFolders Interface