ParagraphFormat.SpaceBeforeAuto Property (Word)
Office 2013
True if Microsoft Word automatically sets the amount of spacing before the specified paragraphs. Read/write Long.
This example displays a report showing the SpaceBeforeAuto settings for the active document.
Select Case ActiveDocument.Range.ParagraphFormat.SpaceBeforeAuto Case True x = "Spacing before paragraphs is handled " _ & "automatically for all paragraphs." Case False x = "Spacing before paragraphs is handled " _ & "manually for all paragraphs." Case wdUndefined x = "Spacing before paragraphs is handled " _ & "automatically for some paragraphs, " _ & "manually for some paragraphs." End Select