Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

MergeCellsMode Enum

Lists available modes to merge cells.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

[Flags]
public enum MergeCellsMode

Members

Name Description
Default

If the cell range specified to be merged intersects other merged cells, a cell range including all these intersecting ranges is merged.

SpreadsheetControl_MergeCellsMode_Default

IgnoreIntersections

If the cell range specified to be merged intersects other merged cells, these intersections are ignored.

SpreadsheetControl_MergeCellsMode_IgnoreIntersections

ByRows

Each row in the specified cell range is merged.

SpreadsheetControl_MergeCellsMode_ByRows

ByColumns

Each column in the specified cell range is merged.

SpreadsheetControl_MergeCellsMode_ByColumns

Remarks

MergeCellsMode enumeration values are used by the Worksheet.MergeCells and RangeExtensions.Merge methods.

See Also