Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.13 KB

Word.Document.FormattingShowFilter.md

File metadata and controls

49 lines (32 loc) · 1.13 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.FormattingShowFilter property (Word)
vbawd10.chm158007748
vbawd10.chm158007748
Word.Document.FormattingShowFilter
41509d69-9cee-bf85-6530-c5603b9c9136
06/08/2017
medium

Document.FormattingShowFilter property (Word)

Sets or returns a WdShowFilter constant that represents the styles and formatting displayed in the Styles and Formatting task pane. Read/write Boolean.

Syntax

expression. FormattingShowFilter

expression Required. A variable that represents a Document object.

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

See also

Document Object

[!includeSupport and feedback]