Find.MatchCase property (Word)
True if the find operation is case-sensitive. The default is False. Read/write Boolean.
expression. MatchCase
expression An expression that returns a 'Find' object.
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.
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
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.