Skip to main content

GridColumn.SummaryText Property

Gets the summary text displayed within the View footer cell located under this column.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[Browsable(false)]
public string SummaryText { get; }

Property Value

Type Description
String

A String value which is the formatted textual representation of this column’s total summary value.

Remarks

You can specify the total summary to be calculated for a particular column using the column’s GridColumn.SummaryItem property. This property provides access to the GridSummaryItem object whose settings specify the aggregate function used, the field whose values are used for calculation and the calculated value formatting. The calculated value, formatted as specified by the summary item object, is displayed within the View footer cell located under the column. This formatted summary value can be obtained via the column’s SummaryText property.

Please refer to the Working with Summaries in Code. Custom Summaries topic for additional information.

See Also