Selection.InsertParagraphBefore Method

Word Developer Reference

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.

Visual Basic for Applications
  With Selection
    .InsertParagraphBefore
    .InsertBefore "Hello"
End With

See Also