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

TcxGridColumn.OnCustomDrawFooterCell Event

In This Article

Occurs when a footer or group footer cell within the current column is about to be drawn.

#Declaration

Delphi
property OnCustomDrawFooterCell: TcxGridColumnCustomDrawHeaderEvent read; write;

#Remarks

As with other custom draw events, this event provides a canvas for the grid control (the ACanvas parameter) and ViewInfo to get the bounding rectangle of the painted element (the AViewInfo parameter and its Bounds property). Sender is usually the element that caused the repaint. The ADone parameter is initially False you should set it to True to tell the grid that you have chosen to custom draw this item.

To manually paint a column’s group summaries located in group rows, handle the column’s TcxGridColumn.OnCustomDrawGroupSummaryCell event instead.

See Also