Skip to main content
Tab

ASPxGridViewTableFooterCellEventArgs.GetSummaryValue(ASPxSummaryItem) Method

Returns the specified summary item’s value.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public object GetSummaryValue(
    ASPxSummaryItem item
)

Parameters

Name Type Description
item ASPxSummaryItem

An ASPxSummaryItem object whose value is returned.

Returns

Type Description
Object

An object that represents the specified summary item’s value.

Remarks

If the processed cell belongs to the grid’s Footer, the GetSummaryValue method returns the specified summary item’s value calculated against all data rows. You can also use the ASPxGridView.GetTotalSummaryValue method.

If the processed cell belongs to a Group Footer, the GetSummaryValue method returns the specified summary item’s value calculated against the current group of rows. You can also use the ASPxGridView.GetGroupSummaryValue method.

See Also