MergeCellsMode Enum
Lists available modes to merge cells.
Namespace: DevExpress.Spreadsheet
Assembly:
DevExpress.Spreadsheet.v26.1.Core.dll
Declaration
[Flags]
public enum MergeCellsMode
<Flags>
Public Enum MergeCellsMode
Members
| Name |
Description |
Example |
Default
|
If a cell range to be merged intersects other merged cells, a cell range that includes all the intersecting ranges is merged.
|

|
IgnoreIntersections
|
If a cell range to be merged intersects other merged cells, these intersections are ignored.
|

|
ByRows
|
Each row in the specified cell range is merged.
|

|
ByColumns
|
Each column in the specified cell range is merged.
|

|
The MergeCellsMode enumeration values are used by the Worksheet.MergeCells and RangeExtensions.Merge methods.
See Also