Selection.FormattedText Property

Word Developer Reference

Returns or sets a Range object that includes the formatted text in the specified range or selection. Read/write.

Syntax

expression.FormattedText

expression   A variable that represents a Selection object.

Remarks

This property returns a Range object with the character formatting and text from the specified range or selection. Paragraph formatting is included in the Range object if there is a paragraph mark in the range or selection.

When you set this property, the text in the range is replaced with formatted text. If you don't want to replace the existing text, use the Collapse method before using this property (see the first example).

Example

This example copies the first paragraph in the document, including its formatting, and inserts the formatted text at the insertion point.

Visual Basic for Applications
  Selection.Collapse Direction:=wdCollapseStart
Selection.FormattedText = ActiveDocument.Paragraphs(1).Range

This example copies the text and formatting from the selection into a new document.

Visual Basic for Applications
  Set myRange = Selection.FormattedText
Documents.Add.Content.FormattedText = myRange

See Also