Calendars Collection Object

Project Developer Reference

Contains a collection of Calendar objects.

Example

Using the Calendar Object

Use BaseCalendars(Index), where Index is the calendar index number or calendar name, to return a single Calendar object.

Visual Basic for Applications
  MsgBox ActiveProject.BaseCalendars(1).Name

Using the Calendars Collection

Use the BaseCalendars property to return a Calendars collection. The following example resets the properties of each base calendar in the active project to their default values.

Visual Basic for Applications
  Dim C As Calendar

For Each C In ActiveProject.BaseCalendars C.Reset Next C

Use the BaseCalendarCreate method to add a Calendar object to the Calendars collection. The following example creates a new base calendar.

Visual Basic for Applications
  BaseCalendarCreate Name:="Base Holiday Calendar"

See Also