in Corel Draw 2025 is it possible to change multiple dimension lines from inches to mm at the same time
sign guy said:in Corel Draw 2025 is it possible to change multiple dimension lines from inches to mm at the same time
You can select multiple dimensions at the same time, and then apply a style - or a style set - to them using the Object Styles docker.
If you want to be able to control everything, you could create a style set, then:
To better clarify, I have a drawing for an ADA sign that has multiple auto dimension lines they were originally done using inch fractions, I need to change them to MM. Is there a way faster than unlocking each one and changing it, then moving to the next.
SelectDimensions macro - selects all on the page then select the Dimensions Tool and change
Sub SelectDimensions()
Dim sr As ShapeRange, s As Shape, srNew As New ShapeRangeActiveDocument.SelectableShapes.All.AddToSelectionSet sr = ActiveSelectionRangeActiveDocument.BeginCommandGroup "SelectDimension"Optimization = TrueFor Each s In srIf Not s.Type = cdrLinearDimensionShape Thens.RemoveFromSelection
End IfIf s.Type = cdrLinearDimensionShape Thens.AddToSelection'Next sEnd IfNext sOptimization = False: RefreshEnd Sub
Myron, thanks for the macro, after running it I still had a problem with the controls in the tool bar disappearing. After rereading your reply and clicking the dimension tool it brought back the tool bar controls. Thank you very much for the help. Do you know if there a macro that allows double dimension callouts in on top and mm under?
macromonster.com