Selection.InsertParagraphAfter Method (Word)
Inserts a paragraph mark after a selection.
Syntax
expression .InsertParagraphAfter
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 a new paragraph after the current paragraph.
With Selection
.Move Unit:=wdParagraph
.InsertParagraphAfter
.Collapse Direction:=wdCollapseStart
End With
This example inserts a paragraph at the end of the active document. The Content property returns a Range object.
ActiveDocument.Content.InsertParagraphAfter