windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsview-61473862.md
Gets or sets whether neighboring cells with identical values merge.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AllowCellMerge { get; set; }
<DefaultValue(False)>
<XtraSerializableProperty>
Public Overridable Property AllowCellMerge As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true , to allow neighboring cells with identical values to merge; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowCellMerge |
|---|---|
| GridView |
.OptionsView .AllowCellMerge
|
Set the AllowCellMerge property to true to enable cell merging.
When cell merging is enabled, you can prevent cells in a specific column from being merged by setting the column’s OptionsColumn.AllowMerge property to DefaultBoolean.False.
You can also handle the View’s GridView.CellMerge event to merge cells manually.
The GridOptionsView.MergedCellEditMode property specifies how users can edit merged cells.
Note
AllowCellMerge property’s value.See Also