View Single Post
 
Old 09-29-2013, 02:51 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 4,001
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

As I wrote, with the "In line with text" placement option, a picture behaves like a (large) text character.

To automate the process, you can use a macro. Try something like this:

Code:
Sub AdjustTextPosForInlineShapes()
Dim i As InlineShape
For Each i In ActiveDocument.InlineShapes
i.Range.Font.Position = -i.Height + 14
'+14 adds the font size. can be omitted
Next i
End Sub
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote