API 文档 > Miscellaneous > Object ProModel > Callback ProModelCreatePreAction
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>
(*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
Successful exit from this function.
Other
An error was encountered. Model creation will be stopped.
See Also
User Guide References
这对您有帮助吗?