View Single Post
 
Old 04-20-2012, 08:18 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,372
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi,

Try something along the following lines:
Code:
Sub Demo()
Application.ScreenUpdating = False
With Selection.InlineShapes(1).Borders
  .OutsideLineStyle = wdLineStyleThickThinSmallGap
  .OutsideLineWidth = wdLineWidth450pt
End With
Application.ScreenUpdating = True
End Sub
Note the 'wdLineWidth450pt' setting. This is the nearest to your 4pt spec. Word has numerous other LineWidth constants, ranging from to 025pt (0.25pt) to 600pt (6pt).
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote