Selection.Find Property

Word Developer Reference

Returns a Find object that contains the criteria for a find operation. Read-only.

Syntax

expression.Find

expression   A variable that represents a Selection object.

Remarks

The selection is changed if the find operation is successful.

Example

The following example searches forward through the document for the word "Microsoft." If the word is found, it is automatically selected.

Visual Basic for Applications
  With Selection.Find
    .Forward = True
    .ClearFormatting
    .MatchWholeWord = True
    .MatchCase = False
    .Wrap = wdFindContinue
    .Execute FindText:="Microsoft"
End With

See Also