Edit

Share via


Style.ParagraphFormat property (Word)

Returns or sets a ParagraphFormat object that represents the paragraph settings for the specified style. Read/write.

Syntax

expression. ParagraphFormat

expression A variable that represents a 'Style' object.

Example

This example modifies the Heading 2 style for the active document. Paragraphs formatted with this style are indented to the first tab stop and double-spaced.

With ActiveDocument.Styles(wdStyleHeading2).ParagraphFormat 
 .TabIndent(1) 
 .Space2 
End With

See also

Style Object

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.