Category Drawings and detail, Object ProDrawing

Function ProDrawingDimAttachsGet


DEPRECATED: Since Wildfire 5.0
SUPERSEDED BY: ProDrawingDimAttachpointsGet
Description
Note: This function is deprecated and replaced by: ProDrawingDimAttachpointsGet().

Retrieves the attachments and the sense of the specified drawing dimension. only applicable for dimensions created in drawing mode. This function does not support drawing dimensions created from intersections of geometric entities.

Synopsis
#include <ProDrawing.h>
ProErrorProDrawingDimAttachsGet(
ProDrawing drawing
/* (In)
the drawing.
*/
ProDimension* dimension
/* (In)
the dimension.
*/
ProSelection** p_attachments_arr
/* (Out)
pointer to a ProArray of ProSelection. Will be allocated by function. Free this using ProSelectionarrayFree().
*/
ProDimSense** p_dsense_arr
/* (Out)
pointer to a ProArray of ProDimSense. Will be allocated by function. Free this using ProArrayFree().
*/
)
Returns
PRO_TK_BAD_INPUTSone or more of the input arguments are invalid.
PRO_TK_INVALID_ITEMthe dimension specified is not a valid dimension created in drawing mode.
PRO_TK_NO_ERRORsuccessfully retrieved the attachments and the sense.
PRO_TK_INVALID_TYPEthe dimension sense type is not supported with this function.
PRO_TK_NOT_IMPLEMENTEDIf the dimension is placed on intersection of two entities.