Find.ClearFormatting method (Word)

Removes text and paragraph formatting from the text specified in a find or replace operation.

Syntax

expression.ClearFormatting

expression A variable that represents a 'Find' object.

Example

This example removes formatting from the find criteria before searching through the selection. If the word "Hello" with bold formatting is found, the entire paragraph is selected and copied to the Clipboard.

Sub ClrFmtgFind() 
 With Selection.Find 
 .ClearFormatting 
 .Font.Bold = True 
 .Execute FindText:="Hello", Format:=True, Forward:=True 
 If .Found = True Then 
 .Parent.Expand Unit:=wdParagraph 
 .Parent.Copy 
 End If 
 End With 
End Sub

See also

Find Object

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.