Share via


TextStyle.ParagraphFormat Property

Publisher Developer Reference

Returns a ParagraphFormat object representing the paragraph formatting for the specified text range or text style.

Syntax

expression.ParagraphFormat

expression   A variable that represents a TextStyle object.

Example

The following example removes all the tab stops from the text in the first shape on page one of the active publication.

Visual Basic for Applications
  Dim pfTemp As ParagraphFormat

Set pfTemp = ActiveDocument.Pages(1).Shapes(1) _ .TextFrame.TextRange.ParagraphFormat

pfTemp.Tabs.ClearAll

See Also