Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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
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.