Increase/Decrease space before/after paragraph Word VBA

Increase/Decrease space before/after paragraph Word VBA

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

Leave a Reply

Your email address will not be published. Required fields are marked *