PfsEvents

 

Remarks Properties Methods Samples

ED
avaliable
RT
avaliable

Remarks:Top

The Events collection contains the user-defined events of the PFS. User-defined events can be linked to the schedules as relative switching operations. When execution the function Execute PFS event for an event, the linked switching operations in the schedule are executed.

Properties:Top

Count Parent Session

Methods:Top

CreateEvent DeleteEvent Item
ItemByID    

Samples:Top



'''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''Reading out Event Names ''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''

Private Sub test()

Dim mypfs As PfsEngine
Set mypfs = MyWorkspace.ActiveDocument.Pfs

Dim i As Double

	For i = 0 To mypfs.Events.Count - 1
		Debug.Print mypfs.Events.Item(i).Name
	Next i

End Sub