reb_bl
Guest
Bye to all,
I tried to set up predefined tolerances, including metric±0.05 symmetric tolerance, with ilogic. the accuracy of quota and tolerance is 4 decimals after the comma and the code is as follows:
using this code gives me a tolerance of ±0.5, can anyone tell me why?
Thank you.
I tried to set up predefined tolerances, including metric±0.05 symmetric tolerance, with ilogic. the accuracy of quota and tolerance is 4 decimals after the comma and the code is as follows:
Code:
dim odoc as drawingdocumentodoc = thisapplication.activedocument
dim odrawingdims as drawingdimension
dim textoll as string
textoll= "0,05"
dim osset as selectset = odoc.selectset
for each odrawingdims in osset
odrawingdims.tolerance.settosymmetric (textoll)
next
Thank you.