Options.SmartParaSelection Property (Word)
True for Microsoft Word to include the paragraph mark in a selection when selecting most or all of a paragraph. Read/write Boolean.
Syntax
expression .SmartParaSelection
expression A variable that represents a Options object.
Example
This example disables smart paragraph selection.
Sub SetSmartParagraphSelection()
Options.SmartParaSelection = False
End Sub