windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsmenu-f0e2759e.md
Gets or sets whether the footer menu displays an item that allows users to add multiple total summaries for a column.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public virtual DefaultBoolean ShowAddNewSummaryItem { get; set; }
<DefaultValue(DefaultBoolean.Default)>
<XtraSerializableProperty>
Public Overridable Property ShowAddNewSummaryItem As DefaultBoolean
| Type | Default | Description |
|---|---|---|
| DefaultBoolean | Default |
A DefaultBoolean value that specifies the availability of the corresponding menu item.
|
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
|
You can access this nested property as listed below:
| Object Type | Path to ShowAddNewSummaryItem |
|---|---|
| GridView |
.OptionsMenu .ShowAddNewSummaryItem
|
The ShowAddNewSummaryItem property allows you to show or hide the “Add New Summary” submenu item in the footer menu. The item lets an end-user add multiple summaries at runtime:
By default, this property is set to DefaultBoolean.Default. This is equivalent to DefaultBoolean.True for GridView and BandedGridView Views, and to DefaultBoolean.False for AdvBandedGridView View.
To add multiple total summaries for a column in code, use the GridColumn.Summary property.
The “Add New Summary” submenu contains all available summaries, except those that have been applied to a column.
The example demonstrates how to hide the “Add New Summary” item in the footer menu.
gridView1.OptionsMenu.ShowAddNewSummaryItem = DefaultBoolean.False;
GridView1.OptionsMenu.ShowAddNewSummaryItem = DefaultBoolean.False
See Also