Category Creo Parametric fundamentals, Object ProMdl

Callback ProMdlCreatePreAction


Description
This is the notification function called before creating a model.

Users must supply this function by calling ProNotificationSet() with the notify type PRO_MDL_CREATE_PRE.

This function is invoked after the user specifies the type and subtype of a Creo Parametric model.

Synopsis
#include <ProMdl.h>
ProError(*ProMdlCreatePreAction)(
ProMdlType mdl_type
/* (In)
The model type (PRO_MDL_PART, PRO_MDL_ASSEMBLY, and so on)
*/
int sub_type
/* (In)
The model subtype
*/
ProName r_model_name
/* (Out)
The model name assigned by the callback.
*/
ProBoolean* r_allow_override
/* (Out)
If this is PRO_B_FALSE, the supplied model name cannot be overridden by the user.
*/
)
Returns
PRO_TK_NO_ERRORSuccessful exit from this function.
OtherAn error was encountered. Model creation will be stopped.
See Also
ProNotificationSet

Manual References:

  1. Pro/DEVELOP to Creo Parametric TOOLKIT Function Mapping: Equivalent Pro/DEVELOP Functions
  2. Event-driven Programming: Notifications: File Management Events