Spacing
Microsoft Offers IncreaseSpacing and DecreaseSpacing methods to control space in (Before/After) a paragraph. Lets write code to increase and decrease space one by one:
IncreaseSpacing method
Public Sub IncreaseParaSpacing() Selection.Paragraphs.IncreaseSpacing End Sub
DecreaseSpacing method
Public Sub DecreaseParaSpacing() Selection.Paragraphs.DecreaseSpacing End Sub
Next Indent or Out Indent Paragraph