PfsScheduleTime

 

Remarks Properties Methods Samples

ED
avaliable
RT
avaliable

Remarks:Top

Schedule Times are the entries in a schedule which can contain switching points for functions or variables.

Properties:Top

EventId Guid Offset
Parent Session Time
Type UserEventId  

Methods:Top

Event ScheduleValues  

Samples:Top



''''''''''''''''''''''''''''''''''''''''''''''
''''''''Reading out Types and times of '''''''
''''''''''''''''all Schedule Times''''''''''''
''''''''''''''''''''''''''''''''''''''''''''''
Private Sub mytest1()

  Dim mypfs As PfsEngine
  Set mypfs = MyWorkspace.ActiveDocument.pfs
  Dim i As Integer
  
	For i = 0 To mypfs.Groups.Item(0).Schedules.Item(0).ScheduleTimes.Count - 1
		Debug.Print mypfs.Groups.Item(0).Schedules.Item(0).ScheduleTimes.Item(0).Type
		Debug.Print mypfs.Groups.Item(0).Schedules.Item(0).ScheduleTimes.Item(0).Time
	Next i

End Sub