PF_Stop Method

Description
Issues a Part Feeding process end request.
This will wait for running callback functions to finish.
Once complete, the PF_CycleStop callback function will run and the process will stop.

Syntax
Sub PF_Stop (PartID As Integer)

Parameters

  • PartID
    An integer indicating the part ID (1 to 16).

Remarks
Stops the Part Feeding process for the specified part.
Unlike the PF_Abort method, PF_Stop will wait for running callback functions to finish.
Once callback functions are complete, the PF_CycleStop callback function will run.
Nothing will occur when using this function when the Part Feeding process has not been started.

PF_Stop Example
VB Example:

m_spel.PF_Stop(1)  

C# Example:

m_spel.PF_Stop(1);