Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxTextReportLink Class

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

#Declaration

Delphi
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