Find.Format property (Word)

True if formatting is included in the find operation. Read/write Boolean.

Syntax

expression.Format

expression Required. A variable that represents a 'Find' object.

Example

This example removes all bold formatting in the active document.

With ActiveDocument.Content.Find 
 .ClearFormatting 
 .Font.Bold = True 
 .Format = True 
 .Replacement.ClearFormatting 
 .Replacement.Font.Bold = False 
 .Execute Forward:=True, Replace:=wdReplaceAll, _ 
 FindText:="", ReplaceWith:="" 
End With

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.