FormattedText Property Example
This example copies the first paragraph in the document, including its formatting, and inserts the formatted text at the insertion point.
Selection.Collapse Direction:=wdCollapseStart
Selection.FormattedText = ActiveDocument.Paragraphs(1).Range
This example copies the text and formatting from the selection into a new document.
Set myRange = Selection.FormattedText
Documents.Add.Content.FormattedText = myRange