![]() |
|
#3
|
||||
|
||||
|
Agreed - line spacing is a function of the font metrics; it is not fixed for any given point size, for example. You can see this quite readily by duplicating a paragraph in different fonts at the same point size. Not only do character widths vary but so too do their line heights. You can demonstrate this by creating a paragraph with some text that spans around 1.5 lines, duplicating the paragraph and applying different fonts to each of them, then running the following macro to retrieve the line heights:
Code:
Sub Demo() Dim oPara As Paragraph, sFirstLn As Single, sLastLn As Single For Each oPara In ActiveDocument.Paragraphs With oPara.Range.Characters sFirstLn = .First.Information(wdVerticalPositionRelativeToPage) sLastLn = .Last.Information(wdVerticalPositionRelativeToPage) MsgBox sLastLn - sFirstLn End With Next End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
| Tags |
| leading, line spacing |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Multiple bullet points on one line
|
Calculon88 | Word | 1 | 05-25-2013 01:01 PM |
| Unwanted line through picture bullet points | cchatter | Word | 1 | 04-12-2013 11:33 AM |
| Line appears with bullet points | Sequitorian | Word | 0 | 08-24-2010 03:52 PM |
Single Spacing
|
steveman1234 | Word | 8 | 05-18-2010 09:03 PM |
| Single Line Spacing for Short Lists? | tatihulot | Word | 2 | 04-20-2010 02:53 PM |