Add Method (Paragraphs Collection) Example
This example adds a paragraph after the selection.
Selection.Paragraphs.Add
This example adds a paragraph mark before the first paragraph in the selection.
Selection.Paragraphs.Add Range:=Selection.Paragraphs(1).Range
This example adds a paragraph mark before the second paragraph in the active document.
ActiveDocument.Paragraphs.Add _
Range:=ActiveDocument.Paragraphs(2).Range
This example adds a new paragraph mark at the end of the active document.
ActiveDocument.Paragraphs.Add