Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi,
We want to get the drawing display dimension value, as shown in below snap.
So please can i know how we can get this values.
Regards,
Prashant
Can you explain what you are aiming?
I am not able to understand your query...
extern ProError ProDrawingDimensionVisit(
ProDrawing drawing,
ProType type,
ProDimensionVisitAction action,
ProDimensionFilterAction filter,
ProAppData data );
/*
Purpose:
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.
Input Arguments:
drawing - Handle of the drawing whose dimensions are to
be visited.
type - PRO_DIMENSION or PRO_REF_DIMENSION
action - the function that gets called for each drawing
dimension being visited.
filter - 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.
data - caller-specified data that gets passed to the
action and filter functions.
Output Arguments:
None
Thanks.