Skip to main content

TcxGridRowFooterCellViewInfo Class

Contains the ViewInfo information for drawing group footer cells in tabular Views.

Declaration

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 tabular View. Alternatively, you can handle a column’s OnCustomDrawFooterCell event to perform custom draw a group footer cell for this column. To learn more about custom draw please refer to the Custom Draw topic.

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

To locate group footer cells within a tabular View, see the Grid View Elements topic.

See Also