Paragraph.SpaceAfterAuto Property

Word Developer Reference

True if Microsoft Word automatically sets the amount of spacing after the specified paragraphs. Read/write Long.

Syntax

expression.SpaceAfterAuto

expression   A variable that represents a Paragraph object.

Remarks

Returns wdUndefined if the SpaceAfterAuto property is set to True for only some of the specified paragraphs. Can be set to either True or False.

If SpaceAfterAuto is set to True, the SpaceAfter property is ignored.

Example

This example displays a report showing the SpaceAfterAuto settings for the first paragraph in the active document.

Visual Basic for Applications
  Select Case ActiveDocument.Paragraphs(1).SpaceAfterAuto
    Case True
        x = "Spacing after paragraphs is handled " _
            & "automatically for all paragraphs."
    Case False
        x = "Spacing after paragraphs is handled " _
            & "manually for all paragraphs."
    Case wdUndefined
        x = "Spacing after paragraphs is handled " _
            & "automatically for some paragraphs, " _
            & "manually for some paragraphs."
End Select

See Also