Selection.InsertParagraphAfter Method

Word Developer Reference

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.

Visual Basic for Applications
  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.

Visual Basic for Applications
  ActiveDocument.Content.InsertParagraphAfter

See Also