Worksheet.MergeCells(CellRange, MergeCellsMode) Method
Merges cells in the specified mode.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
range | CellRange | A CellRange object that specifies the range of cells to be merged. |
mode | MergeCellsMode | A MergeCellsMode enumeration member that specifies how to merge cells. |
Remarks
To unmerge cells, use the Worksheet.UnMergeCells method.
Another way to merge and unmerge a cell range is to use the range’s RangeExtensions.Merge and RangeExtensions.UnMerge extension methods, defined by the RangeExtensions class. These extension methods are accessible as methods of the CellRange object and called by using the instance method syntax.
See Also