Skip to main content

GridControl.TotalSummaryVisibility Property

Gets or sets whether the total summary panel is displayed. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

[XtraSerializableProperty]
public VisibilityState TotalSummaryVisibility { get; set; }

Property Value

Type Description
VisibilityState

A VisibilityState enumeration value which specifies when the total summary panel is shown.

Available values:

Name Description
Default

An element is automatically shown when required.

Always

An element is always shown.

Never

An element is never shown.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

By default, the total summary panel is automatically shown at the bottom of the grid after total summary items are added to the GridControl.TotalSummaries collection. To make this panel always visible or always hidden, use the TotalSummaryVisibility property.

See Also