Category Assembly, Object ProProcstep

Function ProProcstepInit


Description
Returns the handle to the specified process step.
Synopsis
#include <ProProcstep.h>
ProErrorProProcstepInit(
ProSolid p_solid
/* (In)
The solid that contains the process step.
*/
int step_number
/* (In)
The number of the process step in the active step list. If you specify this argument, the function ignores step_id.
*/
int step_id
/* (In)
The identifier of the process step, if you did not specify the number (you specified PRO_VALUE_UNUSED).
*/
ProProcstep* p_proc_step
/* (Out)
The handle to the process step, if found.
*/
)
Returns
PRO_TK_E_FOUNDThe function found the process step in the solid.
PRO_TK_E_NOT_FOUNDThe function did not find the process step in the solid.
PRO_TK_BAD_INPUTSOne or more of the input arguments are invalid.

Manual References:

  1. Production Applications: Process Planning: Process Step Objects

Sample Code References:

  1. pt_examples ( TestProcstep.c )
  2. pt_examples ( TestProcstep.c )