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 "