Report.SelectionParagraph

Returns the paragraph format of the selected text in the report.

This property is read only.

Syntax Parameters Return value
- - Paragraph

SVB Example

Formatting a paragraph:

Option Base 1
Option Explicit
Sub Main
    Dim rpt As Report
    Set rpt = ActiveReport
    'set the highlighted paragraph to be bulleted and double spaced
    rpt.SelectionParagraph.BulletStyle = scParagraphBulletRegular
    rpt.SelectionParagraph.Spacing = scParagraphSpacingDouble
End Sub