Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True if Microsoft Word automatically sets the amount of spacing before the specified paragraphs. Read/write Long.
Syntax
expression. SpaceBeforeAuto
expression A variable that represents a 'ParagraphFormat' object.
Remarks
Returns wdUndefined if the SpaceBeforeAuto property is set to True for only some of the specified paragraphs. Can be set to either True or False.
If SpaceBeforeAuto is set to True, the SpaceBefore property is ignored.
Example
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.