- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
How can i change Primary Tolerance using Ilogic?
I know how to change Primary Unit but i can't find the other one.
Thank you ![]()
Solved! Go to Solution.
Hello,
How can i change Primary Tolerance using Ilogic?
I know how to change Primary Unit but i can't find the other one.
Thank you ![]()
Solved! Go to Solution.
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
(Not an Autodesk Employee)