Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.07 KB

Word.Document.FormattingShowParagraph.md

File metadata and controls

49 lines (32 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.FormattingShowParagraph property (Word)
vbawd10.chm158007746
vbawd10.chm158007746
Word.Document.FormattingShowParagraph
b2fc92be-02f5-1ed5-aa8a-76e4ed725b49
06/08/2017
medium

Document.FormattingShowParagraph property (Word)

True for Microsoft Word to display paragraph formatting in the Styles and Formatting task pane. Read/write Boolean.

Syntax

expression. FormattingShowParagraph

expression A variable that represents a Document object.

Example

This example enables displaying paragraph formatting in the Styles and Formatting task pane.

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]