Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 770 Bytes

Project.Month.Days.md

File metadata and controls

41 lines (25 loc) · 770 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Month.Days property (Project)
project-server
Project.Month.Days
86572272-1a5f-2c86-2111-e41f39f4c1e6
06/08/2017
medium

Month.Days property (Project)

Gets a Days collection representing the days in the month. Read-only Days.

Syntax

expression. Days

expression A variable that represents a Month object.

Example

The following example makes January 1 of every year a nonworking day.

Sub NewYearsDayOff() 
 
 Dim Y As Year 
 
 For Each Y In ActiveProject.Calendar.Years 
 Y.Months(pjJanuary).Days(1).Working = False 
 Next Y 
 
End Sub

[!includeSupport and feedback]