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

TcxGridRowFooterCellViewInfo Class

Contains ViewInfo information required to draw group footer cells in Table and Banded Table grid Views.

#Declaration

Delphi
TcxGridRowFooterCellViewInfo = class(
    TcxGridFooterCellViewInfo
)

#Remarks

Group footer cells are designed to display group summaries for corresponding columns. Group summaries are stored in the View’s DataController.Summar.DefaultGroupSummaryItems collection. The SummaryItem property of the TcxGridRowFooterCellViewInfo object references the summary item displayed by the group footer cell.

A TcxGridRowFooterCellViewInfo 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 Table or Banded Table grid View. Alternatively, you can handle a column’s OnCustomDrawFooterCell event to perform custom draw a group footer cell for this column.

You should not create instances of ViewInfo classes. They are created automatically on demand.

See Also