Object ProModel

Callback ProModelCreatePreAction


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

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

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

Synopsis
#include <ProMdl.h>
ProError(*ProModelCreatePreAction)(
ProMdlType mdl_type
/* (In)
The model type (PRO_MDL_PART, PRO_MDL_ASSEMBLY, and so on)
*/
ProMdlsubtype sub_type
/* (In)
The model subtype
*/
ProMdlName 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. Event-driven Programming: Notifications: File Management Events
  2. Technical Summary of Changes for Creo 11.0.0.0: Notification Functions