Message 1 of 4

Not applicable
02-15-2016
07:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I would like to be able to pick dimensions (overall size dim.)
Then change the tolorance to basic.
I have found this rule that changes all dims,
I just need to add the the pick function then change the picked dims.
Any help adding pick then changing to tol basic, not all dims.
Thank
Referance rule....
' Set a reference to the select set of the active document. Dim oDoc As DrawingDocument oDoc = ThisApplication.ActiveDocument ' Find all selected occurrences and add them to an ObjectCollection. Dim oDrawingDims As DrawingDimension 'Loop through all dimensions For Each oDrawingDims In oDoc.ActiveSheet.DrawingDimensions 'set the Tolerance Method'oDrawingDims.Tolerance.SetToDefault oDrawingDims.Tolerance.SetToBasic 'oDrawingDims.Tolerance.SetToReference Next
Solved! Go to Solution.