DataGridView.TotalSummaryVisibility Property
Gets or sets whether the total summary panel is displayed. This is a bindable property.
Namespace: DevExpress.Maui.DataGrid
Assembly: DevExpress.Maui.DataGrid.dll
NuGet Package: DevExpress.Maui.DataGrid
Declaration
public VisibilityState TotalSummaryVisibility { get; set; }
Property Value
| Type | Description |
|---|---|
| VisibilityState | A value that specifies whether the total summary panel is visible. |
Available values:
| Name | Description |
|---|---|
| Auto | The element visibility is calculated automatically. |
| Always | The element is always visible. |
| Never | The element is always hidden. |
Remarks
The total summary panel is automatically shown at the bottom of the grid after a total summary item is added to the DataGridView.TotalSummaries collection. Use the TotalSummaryVisibility property to make this panel always visible or always hidden.
See Also