![]() |
|
|
|
#1
|
||||
|
||||
|
A macro containing the following line of code will align the separator to the right. http://www.gmayor.com/installing_macro.htm
Code:
ActiveDocument.Footnotes.Separator.ParagraphFormat.Alignment = wdAlignParagraphRight Code:
Sub FootnotesLeft()
Dim oFn As Footnote
For Each oFn In ActiveDocument.Footnotes
oFn.Range.ParagraphFormat.Alignment = wdAlignParagraphLeft
Next oFn
ActiveDocument.Footnotes.Separator.ParagraphFormat.Alignment = wdAlignParagraphLeft
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Word 2010 Space Between footnote separator and note
|
matman | Word | 12 | 05-19-2015 03:08 PM |
Reduce large space after footnote separator
|
Andersn2 | Word | 2 | 03-04-2015 01:07 PM |
How do I get equal space between main body text and footnote separator line on every page?
|
Different | Word | 1 | 02-09-2015 09:15 PM |
Too much space between text and footnote separator
|
jmatthewo | Word | 4 | 05-20-2012 02:59 PM |
custom number format: change thousands separator
|
Ward | Excel | 1 | 06-07-2011 08:18 PM |