Skip to main content

TcxGridFooterCellViewInfo Class

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

Declaration

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. 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 footer cells within a tabular View, see the Grid View Elements topic.

See Also