Hi,
I have many images in the document, inline shapes, and wrapped (top and bottom)
I want to apply a border to all images (1pt) and disable the already created shadow for it.
I made this VBA, but doesn't work for wrapped shapes
Code:
Dim pic As InlineShape
For Each pic In ActiveDocument.InlineShapes
pic.Borders.OutsideLineStyle = wdLineStyleSingle
pic.Borders.OutsideLineWidth = wdLineWidth010pt
pic.Shadow.Visible = False
Next
Thanks