PfsGroup

 

Remarks Properties Methods Samples

ED
avaliable
RT
avaliable

Remarks:Top

The IPfsGroup object is an object which describes an equipment object in the PFS module.

Properties:Top

CycleEnd CycleStart Guid
Name Parent Session

Methods:Top

Rename Schedules SetModify
TimeModells    

Samples:Top



'''''''''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''Giving out all group names''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''''''''

Private Sub test()

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

Dim i As Double

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

End Sub