Paragraphs Property

Applies To

Document object, Range object, Selection object.

Description

Returns a Paragraphs collection that represents all the paragraphs in the specified document, range, or selection. Read-only.

See Also

Paragraph object.

Example

This example sets the line spacing to single for the collection of all paragraphs in section one in the active document.

ActiveDocument.Sections(1).Range.Paragraphs.LineSpacingRule = wdLineSpaceSingle
This example sets the line spacing to double for the first paragraph in the selection.

Selection.Paragraphs(1).LineSpacingRule = wdLineSpaceDouble