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

TcxCustomVerticalGridReportLink.OnCustomDrawRowValueCell Event

In This Article

Occurs before painting cells of row values.

#Declaration

Delphi
property OnCustomDrawRowValueCell: TcxVerticalGridReportLinkCustomDrawRowValueCellEvent read; write;

#Remarks

The OnCustomDrawRowValueCell event occurs before painting cells of row values.

Parameter Description
ACanvas Specifies a TCanvas instance for painting row values.
ARow Specifies the row being painted.
ACellIndex Specifies the processed row’s cell index (for multi editor rows).
ARecordIndex Specifies the record index which identifies the row value cell being painted.
AnItem Provides painting information.
ADone If True, default drawing routines are not required, otherwise default painting is performed.

Note, that custom painting is resource intensive. In order to customize the report appearance use the OnInitialize… event, which occurs prior to the report being rendered, thus improving performance.

See Also