InsertParagraph Method Example
This example inserts a new paragraph at the beginning of the active document.
Set myRange = ActiveDocument.Range(0, 0)
With myRange
.InsertParagraph
.InsertBefore "Dear Sirs,"
End With
This example collapses the selection and then inserts a paragraph mark at the insertion point.
With Selection
.Collapse Direction:=wdCollapseStart
.InsertParagraph
.Collapse Direction:=wdCollapseEnd
End With