API Documentation > Creo Parametric fundamentals > Object ProMdl > Callback ProMdlCreatePreAction
Callback ProMdlCreatePreAction
DEPRECATED:
Since Creo 10.0
Description
Note: This function is deprecated. Use ProModelCreatePreAction instead. 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>
(*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
Successful exit from this function.
Other
An error was encountered. Model creation will be stopped.
See Also
User Guide References
Was this helpful?