MatchCase Property

Applies To

Find object.

Description

True if the find operation is case sensitive. Read/write Boolean.

Note Use the Text property of the Find object or use the FindText argument with the Execute method to specify the text to be located in a document.

See Also

Execute method (Find object), MatchWholeWord property, Text property.

Example

This example selects the next occurrence of the word "library" in the selection, regardless of the case.

With Selection.Find
    .ClearFormatting
    .MatchWholeWord = True
    .MatchCase = False
    .Execute FindText:="library"
End With