Paragraphs.OpenUp Method (Word)
Sets spacing before the specified paragraphs to 12 points.
Syntax
expression .OpenUp
expression Required. A variable that represents a Paragraphs collection.
Remarks
You can also use the SpaceBefore property to set the spacing before paragraphs. The following two statements are equivalent:
ActiveDocument.Paragraphs.OpenUp
ActiveDocument.Paragraphs.SpaceBefore = 12
Example
This example changes the formatting of the second paragraph in the active document to leave 12 points of space before the paragraph.
ActiveDocument.Paragraphs(2).OpenUp