Description | |||||||||||||||||
Visits all dimensions stored in the specified drawing, i.e. all dimensions whose default names start with "dd", "rdd" or "add", therefore all dimensions created in the drawing when the config.pro option "create_drawing_dims_only" was set to YES. | |||||||||||||||||
Synopsis | |||||||||||||||||
#include <ProDrawing.h> | |||||||||||||||||
ProError | ProDrawingDimensionVisit | ( | |||||||||||||||
ProDrawing drawing | |||||||||||||||||
/* (In) | |||||||||||||||||
Handle of the drawing whose dimensions are to be visited. | |||||||||||||||||
*/ | |||||||||||||||||
ProType type | |||||||||||||||||
/* (In) | |||||||||||||||||
PRO_DIMENSION or PRO_REF_DIMENSION | |||||||||||||||||
*/ | |||||||||||||||||
ProDimensionVisitAction action | |||||||||||||||||
/* (In) | |||||||||||||||||
the function that gets called for each drawing dimension being visited. | |||||||||||||||||
*/ | |||||||||||||||||
ProDimensionFilterAction filter | |||||||||||||||||
/* (In) | |||||||||||||||||
the function that gets called for each drawing dimension. This function decides whether the dimension should be visited or skipped. If NULL, all dimensions are visited using the action function. | |||||||||||||||||
*/ | |||||||||||||||||
ProAppData data | |||||||||||||||||
/* (In) | |||||||||||||||||
caller-specified data that gets passed to the action and filter functions. | |||||||||||||||||
*/ | |||||||||||||||||
) | |||||||||||||||||
Returns | |||||||||||||||||
|