Report.SelectionParagraph
Returns the paragraph format of the selected text in the report.
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
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.