Skip to main content

TdxCustomTextReportLink.OnCustomDrawRow Event

Occurs before text rows are painted.

Declaration

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