Find.Format Property

Word Developer Reference

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.

Visual Basic for Applications
  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