PfsEvent

 

Remarks Properties Methods Samples

ED
avaliable
RT
avaliable

Remarks:Top

The PFSEvent object is an user defined event, which can be linked to the schedules as relative switching operations.

Properties:Top

Guid ID Name
Parent Session  

Methods:Top

Execute Rename Schedules
SetModify    

Samples:Top



'''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''Renaming of an event''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''

Private Sub test()

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

mypfs.Events.Item(0).Rename ("my event")
Debug.Print mypfs.Events.Item(0).Name

End Sub