Skip to main content

TdxTextReportLink Class

A report link that prints multi-row text which is represented both as a single string and a list of strings.

Declaration

TdxTextReportLink = class(
    TdxCustomStringsReportLink
)

Remarks

The TdxTextReportLink class does not define any new functionality. It simply publishes the properties declared in the TdxCustomStringsReportLink class. To specify the text that needs to be printed, use the Strings property which provides access to a list of strings each of which represents a single line (row) for the report link. Alternatively, the text can be set as a single string with text lines (rows) delimited by carriage returns and line feeds to the Text property. Set the Alignment and TextRowSpacing properties as needed to adjust the appearance of the text in a report. To perform custom drawing of each text row, handle the OnCustomDrawRow and OnInitializeRow events.

See Also