Skip to main content
A newer version of this page is available. .

GridOptionsMenu.ShowSummaryItemMode Property

Gets or sets whether to show a ‘Mode’ summary sub-menu that allows a user to calculate summaries against all rows or the selection.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v22.1.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public virtual DefaultBoolean ShowSummaryItemMode { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A value that specifies whether to display the ‘Mode’ summary sub-menu.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowSummaryItemMode
GridView
.OptionsMenu .ShowSummaryItemMode

Remarks

For summaries shown in the View Footer, you can choose whether to calculate summaries for all rows or the selection. The GridSummaryItem.Mode property allows you to specify summary calculation mode in code. A user can choose summary calculation mode from the ‘Mode’ summary sub-menu.

image

See GridSummaryItem.Mode for a description of available summary calculation modes.

Use the ShowSummaryItemMode property to specify the visibility of the ‘Mode’ summary sub-menu. If this property is set to Default, the ‘Mode’ summary sub-menu is visible if the OptionsSelection.MultiSelect property is enabled and the OptionsSelection.MultiSelectMode property is set to RowSelect or CheckBoxRowSelect.

See Also