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

GridViewDataColumnSettings.AllowCellMerge Property

Specifies if cell merging is allowed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean AllowCellMerge { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

true, to allow cell merging; otherwise, false.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Show 36 property paths
Library Object Type Path to AllowCellMerge
ASP.NET Controls and MVC Extensions GridViewDataBinaryImageColumn
.Settings.AllowCellMerge
GridViewDataButtonEditColumn
.Settings.AllowCellMerge
GridViewDataCheckColumn
.Settings.AllowCellMerge
GridViewDataColorEditColumn
.Settings.AllowCellMerge
GridViewDataColumn
.Settings.AllowCellMerge
GridViewDataComboBoxColumn
.Settings.AllowCellMerge
GridViewDataDateColumn
.Settings.AllowCellMerge
GridViewDataDropDownEditColumn
.Settings.AllowCellMerge
GridViewDataHyperLinkColumn
.Settings.AllowCellMerge
GridViewDataImageColumn
.Settings.AllowCellMerge
GridViewDataMemoColumn
.Settings.AllowCellMerge
GridViewDataProgressBarColumn
.Settings.AllowCellMerge
GridViewDataSpinEditColumn
.Settings.AllowCellMerge
GridViewDataTextColumn
.Settings.AllowCellMerge
GridViewDataTimeEditColumn
.Settings.AllowCellMerge
GridViewDataTokenBoxColumn
.Settings.AllowCellMerge
GridViewEditDataColumn
.Settings.AllowCellMerge
MVCxGridViewColumn
.Settings.AllowCellMerge
MVCxGridViewColumn<RowType>
.Settings.AllowCellMerge
ASP.NET Bootstrap Controls BootstrapGridViewBinaryImageColumn
.Settings.AllowCellMerge
BootstrapGridViewButtonEditColumn
.Settings.AllowCellMerge
BootstrapGridViewCheckColumn
.Settings.AllowCellMerge
BootstrapGridViewColorEditColumn
.Settings.AllowCellMerge
BootstrapGridViewComboBoxColumn
.Settings.AllowCellMerge
BootstrapGridViewDataColumn
.Settings.AllowCellMerge
BootstrapGridViewDateColumn
.Settings.AllowCellMerge
BootstrapGridViewDropDownEditColumn
.Settings.AllowCellMerge
BootstrapGridViewEditDataColumn
.Settings.AllowCellMerge
BootstrapGridViewHyperLinkColumn
.Settings.AllowCellMerge
BootstrapGridViewImageColumn
.Settings.AllowCellMerge
BootstrapGridViewMemoColumn
.Settings.AllowCellMerge
BootstrapGridViewProgressBarColumn
.Settings.AllowCellMerge
BootstrapGridViewSpinEditColumn
.Settings.AllowCellMerge
BootstrapGridViewTagBoxColumn
.Settings.AllowCellMerge
BootstrapGridViewTextColumn
.Settings.AllowCellMerge
BootstrapGridViewTimeEditColumn
.Settings.AllowCellMerge

Remarks

Set the AllowCellMerge property to true, to allow a grid to automatically merge adjacent cells with the same values in the current column. If the AllowCellMerge property is set to Default, the column’s behavior is controlled by the ASPxGridView’s ASPxGridViewBehaviorSettings.AllowCellMerge property.

CellMerging

Note

If the AllowCellMerge property is set to true, the GridViewStyles.AlternatingRow property is not in effect.

Online Demo

Grid - Cells Merging

See Also