Remarks | Properties | Methods | Samples |
ED
|
avaliable
|
RT
|
avaliable
|
Schedule Times are the entries in a schedule which can contain switching points for functions or variables.
EventId | Guid | Offset |
Parent | Session | Time |
Type | UserEventId |
Event | ScheduleValues |
'''''''''''''''''''''''''''''''''''''''''''''' ''''''''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