Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
kacper_sikorskiD42JA
262 Views, 2 Replies

Primary Tolerance Change Ilogic

Hello,

How can i change Primary Tolerance using Ilogic?

kacper_sikorskiD42JA_0-1719400403484.png

I know how to change Primary Unit but i can't find the other one.

 

Thank you :grinning_face_with_smiling_eyes:

Labels (3)

For specific dimension you can use its Tolerance property and appropriate methods

Dim dimension As DrawingDimension = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingDimensionFilter, "Pick dimension")
dimension.Tolerance.SetToSymmetric(0.01)

There is also this property:

DrawingDimension.TolerancePrecision 

Wesley Crihfield

EESignature

(Not an Autodesk Employee)