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
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.