Advertisement
PGhosh

BdMO-Book-V_Spacing

Jun 12th, 2021
1,687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub V_Spacing()
  2. '
  3. ' V_Spacing Macro
  4. '
  5. '
  6.    Selection.TypeBackspace
  7.     Selection.Style.NoSpaceBetweenParagraphsOfSameStyle = False
  8.     With Selection.ParagraphFormat
  9.         .LeftIndent = CentimetersToPoints(0.89)
  10.         .RightIndent = CentimetersToPoints(0)
  11.         .SpaceBefore = 0
  12.         .SpaceBeforeAuto = False
  13.         .SpaceAfter = 7
  14.         .SpaceAfterAuto = False
  15.     End With
  16. End Sub
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement