| Description |
| The callback function attached to the Creo Parametric menubar buttons by a call to the function ProCmdBracketFuncAdd(). This function is called before and after execution. |
| Synopsis |
| #include <ProUICmd.h> |
| int | (*uiCmdCmdBktFn) | ( |
| uiCmdCmdId command | |
| /*
(In) |
| The identifier of the action or option. |
| */ |
| uiCmdValue* p_new_value | |
| /*
(Out) |
| Not used; argument ignored. |
| */ |
| int entering_command | |
| /*
(In) |
| The value is 1 when called before execution and 0 when called after execution |
| */ |
| void** pp_bracket_data | |
| /*
(In) |
| General application data as provided by the call to ProCmdBracketFuncAdd() that defines this menu item. |
| */ |
| ) |
| Returns |
|
| Non-Zero | | Call the action function associated with the command. |
| Zero | | Don't call the action function associated with the command. |
|