Find.Text Property

Word Developer Reference

Returns or sets the text to find. Read/write String.

Syntax

expression.Text

expression   A variable that represents a Find object.

Remarks

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.

Example

This example replaces "Hello" with "Goodbye" in the active document.

Visual Basic for Applications
  Set myRange = ActiveDocument.Content
With myRange.Find
    .ClearFormatting
    .Replacement.ClearFormatting
    .Text = "Hello"
    .Replacement.Text = "Goodbye"
    .Execute Replace:=wdReplaceAll
End With

See Also