Table of Contents

XlsFile.UnMergeCells Method

Unmerges the range of cells. The coordinates have to be exact, if there is no merged cell with the exact coordinates, nothing will be done. If you want to unmerge all cells inside a range, use ExcelFile.UnMergeAllCellsInRange instead.

Syntax

Namespace: FlexCel.XlsAdapter

public override void UnMergeCells(Int32 firstRow, Int32 firstCol, Int32 lastRow, Int32 lastCol)

Parameters

<-> Parameter Type Description
firstRow Int32 First row of the merged cell.
firstCol Int32 First column of the merged cell.
lastRow Int32 Last row of the merged cell.
lastCol Int32 Last column of the merged cell.

See also