Remarks | Properties | Methods | Samples |
ED
|
avaliable
|
RT
|
avaliable
|
The ScheduleLink object is a link to the variable/function. Depending on the Type property you can access the linked variable/function with the methods ItemVariable resp. ItemRtFunction.
Guid | Name | Parent |
Session | Type |
RtFunction | Variable |
''''''''''''''''''''''''''''''''''''''''''''' ''''''''Giving out all Names, function-'''''' '''''''or variable names of a schedule''''''' ''''''''''''''''''''''''''''''''''''''''''''' Private Sub test() Dim pfs As PfsEngine Dim i As Integer Set pfs = MyWorkspace.ActiveDocument.pfs Dim mytype As Integer Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Count - 1 For i = 0 To pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Count - 1 mytype = pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).Type Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).Type Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).Name Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).GUID If mytype = 32 Or mytype = 34 Then Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).Variable.Driver.Name Else Debug.Print pfs.Groups.Item(0).Schedules.Item(1).ScheduleLinks.Item(i).RtFunction.Name End If Next i End Sub