InsertParagraphBefore Method Example

This example inserts a new paragraph at the beginning of the active document.

ActiveDocument.Range(Start:=0, End:=0).InsertParagraphBefore

This example inserts the text "Hello" as a new paragraph before the selection.

With Selection
    .InsertParagraphBefore
    .InsertBefore "Hello"
End With