Find.Text property (Word)
Returns or sets the text to find. Read/write String.
expression.Text
expression A variable that represents a 'Find' object.
The Text property returns the plain, unformatted text of the selection or range. When you set this property, the text of the range or selection is replaced.
This example replaces "Hello" with "Goodbye" in the active document.
Set myRange = ActiveDocument.Content
With myRange.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "Hello"
.Replacement.Text = "Goodbye"
.Execute Replace:=wdReplaceAll
End With
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.