Range.InsertParagraphAfter (Word)

Inserta una marca de párrafo a continuación de un intervalo.

Después de aplicar este método, el intervalo se expande para incluir el nuevo párrafo.


Set myRange = ActiveDocument.Range(0, 0) 
With myRange 
 .InsertBefore "Title" 
 .ParagraphFormat.Alignment = wdAlignParagraphCenter 
 .InsertParagraphAfter 
End With