title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Period.Shift3 property (Project) |
project-server |
|
7574f88f-3584-03c4-b75e-ca263a5bef44 |
06/08/2017 |
medium |
Gets a Shift object representing the third work shift in a time period. Read-only Shift.
expression. Shift3
expression A variable that represents a Period object.
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]