Period.Shift4 property (Project)
Gets a Shift object representing the fourth work shift in a time period. Read-only Shift.
Syntax
expression. Shift4
expression A variable that represents a Period 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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.