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

TcxGridTableViewStyles.OnGetFooterSummaryStyle Event

In This Article

Occurs every time a footer or group displayed in a group footer panel is about to be drawn.

#Declaration

Delphi
property OnGetFooterSummaryStyle: TcxGridGetFooterSummaryStyleEvent read; write;

#Remarks

The AView parameter specifies the Table View that displays the currently processed summary.

The ARow parameter specifies the row that the group summary resides in. For View footers, the ARow value is nil.

The AColumn parameter specifies the column that the summary is linked to.

The ASummaryItem parameter represents the summary object. To determine whether summary values are used to sort group rows use the ASummaryItem.Sorted property.

The AFooterGroupLevel parameter corresponds to the data group, for which the footer region is drawn (it’s equal to the group column’s GroupIndex property’s value). For View footers, the AFooterGroupLevel value is -1.

The AStyle parameter specifies style attributes to be applied to the summary.

Note

To customize the style of summaries displayed for a particular column, handle the column’s OnGetFooterSummaryStyle event.

The OnGetFooterSummaryStyle event occurs after OnGetFooterStyle and OnGetFooterStyleEx events.

See Also