Selection.InsertParagraphBefore method (Word)
Inserts a new paragraph before the specified selection or range.
Syntax
expression. InsertParagraphBefore
expression Required. A variable that represents a Selection object.
Remarks
After using this method, the selection expands to include the new paragraph.
Example
This example inserts the text "Hello" as a new paragraph before the selection.
With Selection
.InsertParagraphBefore
.InsertBefore "Hello"
End With
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.