constant that represents the styles and formatting displayed in the Styles and Formatting task pane. Read/write Boolean.
WdShowFilter can be one of these WdShowFilter constants. |
wdShowFilterFormattingAvailable |
wdShowFilterFormattingInUse |
wdShowFilterStylesAll |
wdShowFilterStylesAvailable |
wdShowFilterStylesInUse |
expression.FormattingShowFilter
expression Required. An expression that returns one of the objects in the Applies To list.
Example
This example filters formatting to show in the Styles and Formatting task pane only the formatting in use in the active document.
Sub ShowClearFormatting()
With ActiveDocument
.FormattingShowClear = False
.FormattingShowFilter = wdShowFilterFormattingInUse
.FormattingShowFont = True
.FormattingShowNumbering = True
.FormattingShowParagraph = True
End With
End Sub