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

TdxCustomTextReportLink.OnCustomDrawRow Event

In This Article

Occurs before text rows are painted.

#Declaration

Delphi
property OnCustomDrawRow: TdxTextReportLinkCustomDrawRowEvent read; write;

#Remarks

The OnCustomDrawRow event occurs before text rows are painted. This event is fired only when the SupportedCustomDraw property is set to True.

Parameter Description
ACanvas Specifies a TCanvas instance used to paint the row’s text.
AnItem Provides painting information.
ADone If True, default drawing routines aren’t required. Otherwise, default painting is performed.

Note, that custom painting is resource intensive. In order to customize the report’s appearance use the OnInitializeRow event, which occurs prior to the text row being rendered, thus improving performance.

See Also