Range.Text property (Word)

Returns or sets the text in the specified range or selection. Read/write String. Read/write String.

Syntax

expression.Text

expression A variable that represents a Range object.

Remarks

The Text property returns the plain, unformatted text of the range. When you set this property, the existing text in the range is replaced.

Example

This example replaces the first word in the active document with "Dear."

Set myRange = ActiveDocument.Words(1) 
myRange.Text = "Dear "

See also

Range Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.