Skip to main content

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.v23.2.dll

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

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 Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

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