PfsScheduleDay

 

Remarks Properties Samples

ED
avaliable
RT
avaliable

Remarks:Top

A Schedule day object is a specific date on which a schedule is excecuted or not.

Properties:Top

Date Parent Session
Type    

Samples:Top



''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''Reading out all Dates''''''''''''
'''''''of the ExecutionDays of a Schedule'''''
''''''''''''''''''''''''''''''''''''''''''''''
Private Sub test23()

Dim pfs As PfsEngine
Dim i As Integer
Set pfs = MyWorkspace.ActiveDocument.pfs

''''''Giving out the Count of all Execution Days
Debug.Print pfs.Groups.Item(0).Schedules.Item(0).ExecutionDays.Count

	For i = 0 To pfs.Groups.Item(0).Schedules.Item(0).ExecutionDays.Count - 1
		Debug.Print pfs.Groups.Item(0).Schedules.Item(0).ExecutionDays.Item(i).Date
	Next i

End Sub