How do I increase / decrease paragraph spacing by 1 point at a time using the
keyboard or toolbar buttons (similar to changing font size with ctrl [ & ]
keys)
There is no built-in command or keystroke for this. There's an
OpenOrCloseUpPara command, assigned by default to Ctrl+0, that
alternately adds and removes 12 pt of Space Before. There are also
commands IncreaseParagraphSpacing and DecreaseParagraphSpacing,
neither of them assigned a keystroke by default, that add and subtract
6 pt of Space Before.
If you really need a 1-pt increment, you'll have to add these macros
to your template and assign keystrokes to them through the Tools >
Customize > Keyboard dialog:
Sub IncreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore + 1
End Sub
Sub DecreaseParagraphSpacing1pt()
Selection.ParagraphFormat.SpaceBefore = _
Selection.ParagraphFormat.SpaceBefore - 1
End Sub
See
http://www.gmayor.com/installing_macro.htm if needed.