Range.InsertParagraphAfter (Word)
Insère une marque de paragraphe après une plage.
Une fois cette méthode appliquée, la plage s'étend afin de contenir le nouveau paragraphe.
Set myRange = ActiveDocument.Range(0, 0)
With myRange
.InsertBefore "Title"
.ParagraphFormat.Alignment = wdAlignParagraphCenter
.InsertParagraphAfter
End With