Style.NoSpaceBetweenParagraphsOfSameStyle Property

Word Developer Reference

True for Microsoft Word to remove spacing between paragraphs that are formatted using the same style. Read/write Boolean.

Syntax

expression.NoSpaceBetweenParagraphsOfSameStyle

expression   An expression that returns a Style object.

Example

Visual Basic for Applications
  Sub NoSpace()
    ActiveDocument.Styles("List 1") _
        .NoSpaceBetweenParagraphsOfSameStyle = True
End Sub

See Also