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

TcxGridFooterCellViewInfo Class

Stores ViewInfo information for drawing footer cells.

#Declaration

Delphi
TcxGridFooterCellViewInfo = class(
    TcxGridColumnHeaderViewInfo
)

#Remarks

Footer cells are designed to display footer summaries for corresponding columns. Footer summaries are stored in the View’s DataController.Summary.FooterSummaryItems collection. The SummaryItem property of the TcxGridFooterCellViewInfo object references the summary item displayed by the footer cell.

A TcxGridFooterCellViewInfo object is passed as the AViewInfo parameter to the View’s OnCustomDrawFooterCell event. This event allows you to custom draw all footer and group footer cells in a tabular View. Alternatively, you can handle a column’s OnCustomDrawFooterCell event to custom draw a footer cell for this column.

See Also