![]() |
#17
|
||||
|
||||
![]()
To address your drop cap question, I had a fiddle with a macro that might be able to lead to another kludge fix approach. Try this on some selected paragraphs and let us know what the result looks like.
Code:
Sub DropCapMeHebrew() Dim aFrame As Frame, aPara As Paragraph, aWord As Range For Each aPara In Selection.Range.Paragraphs If aPara.Range.Frames.Count = 0 Then Set aWord = aPara.Range.Words(1) Set aFrame = ActiveDocument.Frames.Add(Range:=aWord) aFrame.Borders.OutsideLineStyle = wdLineStyleNone aFrame.HorizontalDistanceFromText = 2 End If Next aPara End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Centered line before and after a word | Miguel | Word | 6 | 02-05-2023 09:02 AM |
![]() |
jcolleenb | Word | 2 | 06-08-2020 03:50 PM |
syntax for inserting blank line before inserting table and after a line or paragraph | SamDsouza | Word VBA | 8 | 08-04-2019 11:10 PM |
![]() |
creieru | Word | 1 | 06-07-2012 11:11 AM |
![]() |
steeleye | Excel | 1 | 07-15-2009 02:13 AM |