Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Sets or returns a Boolean that represents the case sensitivity of the search operation. Read/write.
Syntax
expression.MatchCase
expression A variable that represents a FindReplace object.
Return value
Boolean
Remarks
The default value for MatchCase is False.
Example
This example selects the first occurrence of the word "factory" regardless of case.
With ActiveDocument.Find
.Clear
.MatchCase = False
.FindText = "factory"
.Execute
End With
Support and feedback
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.