ManufacturingProgram2 (Object)

A ManufacturingProgram for a Manufacturing Document.

Methods


Func AppendOperationAfter( iManufacturingOperation, type, AutoSequence) As
Create and Insert a Manufacturing Operation of a specified type after the existing operation.
if AutoSequence is set to 1, the new operation will be sequenced in the Program.
Example:
The following example creates, inserts and sequences in firstProgram the manufacturing operation ManufacturingOperation of type : type
 Set ManufacturingOperation = firstProgram.AppendOperationAfter(operation,Type,1)
Func AppendOperationBefore( iManufacturingOperation, type, AutoSequence) As
Create and Insert a Manufacturing Operation of a specified type before the existing operation.
if AutoSequence is set to 1, the new operation will be sequenced in the Program.
Example:
The following example creates, inserts and sequences in firstProgram the manufacturing operation ManufacturingOperation of type : type
 Set ManufacturingOperation = firstProgram.AppendOperationBefore(operation,Type,1)