Skip to main content

ISupportCalendarFolders Interface

Enables you to get or set a calendar folder name for different types of appointment exchangers.

Namespace: DevExpress.XtraScheduler.Outlook

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

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public interface ISupportCalendarFolders

Remarks

Since calendar folders are pertinent for MS Outlook data exchangers only, the ISupportCalendarFolders interface allows you to specify a name of the calendar folder when appropriate. The code below illustrates this technique:

string calendarFolderName = string.Empty;
if (exchanger is ISupportCalendarFolders)
{
    calendarFolderName = ((ISupportCalendarFolders) this.Exchanger).CalendarFolderName;
}

The OutlookExport, OutlookImport,

See Also