Forum Discussion
Ryan_Coulter
Sep 23, 2022Copper Contributor
Changing Draw colours after they’re on the page
Edited a 200+ page manuscript on Word using green writing via Draw. I want to change the colour of those Draw edits to blue or black. Is it possible to change the colour of all of them en masse?
Sep 23, 2022
Ryan_Coulter Use a macro containing the following code:
Dim ashape As Shape
For Each ashape In ActiveDocument.Shapes
ashape.Line.ForeColor.RGB = RGB(0, 0, 255)
Next ashape