Exceptions

Calendar.Exceptions property

Gets CalendarExceptionCollection object. The collection of exceptions that is associated with the calendar.

public CalendarExceptionCollection Exceptions { get; }

Examples

Shows how to retrieve info about calendar exceptions.

var project = new Project(DataDir + "project_RetrieveExceptions_test.mpp");

// Iterate over calendars
foreach (var calendar in project.Calendars)
{
    // Access calendar exceptions
    foreach (var exception in calendar.Exceptions)
    {
        Console.WriteLine("From: " + exception.FromDate.ToShortDateString());
        Console.WriteLine("To: " + exception.ToDate.ToShortDateString());
    }
}

See Also