Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 855 Bytes

Project.Month.Shift3.md

File metadata and controls

42 lines (27 loc) · 855 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Month.Shift3 property (Project)
project-server
Project.Month.Shift3
a7329e45-c9e0-0e70-0ead-3a3f914ed352
06/08/2017
medium

Month.Shift3 property (Project)

Gets a Shift object representing the third work shift in a month. Read-only Shift.

Syntax

expression. Shift3

expression A variable that represents a Month object.

Example

The following example schedules a half-day of work on Fridays by creating an 8 A.M. to noon shift.

Sub HalfDayFridays() 
 
 With ActiveProject.Calendar.WeekDays(pjFriday) 
 .Shift1.Start = #8:00:00 AM# 
 .Shift1.Finish = #12:00:00 PM# 
 .Shift2.Clear 
 .Shift3.Clear 
 End With 
 
End Sub

[!includeSupport and feedback]