| Description |
| Calls the specified filter and action functions for each note in the model. |
| Synopsis |
| #include <ProNote.h> |
| ProError | ProMdlNoteVisit | ( |
| ProMdl mdl_handle | |
| /*
(In) |
| The model (PRO_PART or PRO_ASSEMBLY). |
| */ |
| ProMdlNoteVisitAction visit_action | |
| /*
(In) |
| The action to perform on each note. If it returns anything other than PRO_TK_NO_ERROR, visiting stops. |
| */ |
| ProMdlNoteFilterAction filter_action | |
| /*
(In) |
| The filter function. If NULL, all notes are visited using the action function. |
| */ |
| ProAppData app_data | |
| /*
(In) |
| The application data passed to the visiting and filter functions. |
| */ |
| ) |
| Returns |
|
|