Description |
| This notification function is called during the creation of an External Analysis Feature, and is used to specify to Creo Parametric the values of dimensions that should be added to each new feature of that type. If the Creo Parametric TOOLKIT application needs to access the resulting dimensions of an Analysis Feature, it should do this using the regular Creo Parametric TOOLKIT functions for that purpose. The notification is set by calling ProAnalysisTypeRegister() |
Synopsis |
#include <ProAnalysis.h> |
ProError | (*ProAnalysisDimsAction) | ( |
| ProAnalysis analysis | |
| /*
(In) |
| The analysis being created |
| */ |
| double** dims | |
| /*
(Out) |
| Pointer to ProArray of dimension values |
| */ |
) |
Returns |
|
PRO_TK_NO_ERROR | | The analysis feature was fully defined. |
PRO_TK_USER_ABORT | | The user chose to abort from the feature create. If this value is returned, Creo Parametric will not create the feature. |
|