Returns a TextRange object that represents the specified paragraphs.
expression.Paragraphs(Start, Length)
expression Required. An expression that returns a TextRange object.
Start Required Long. The first paragraph in the returned range.
Length Optional Long. The number of paragraphs to be returned. Default is 1.
If Length is omitted, the returned range contains one paragraph.
If Length is greater than the number of paragraphs from the specified starting paragraph to the end of the text, the returned range contains all those paragraphs.
This example formats as indents the first line of the selected paragraph.
Sub FormatCurrentParagraph()
Selection.TextRange.Paragraphs(Start:=1).ParagraphFormat _
.FirstLineIndent = InchesToPoints(0.5)
End Sub