MatchCase 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