Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Merges the specified set of cells into a single cell.

Signature
C#
C#
 public void MergeCells(int firstRow, int firstCol, int numRows, int numCols)
Signature
vb.net
vb.net
Public Sub MergeCells(ByVal firstRow As Integer, ByVal firstCol As Integer, ByVal numRows As Integer, ByVal numCols As Integer)
Parameters
Param
firstRow
firstRow

The 0-based number of the first row in the set of cells to merge.

Param
firstCol
firstCol

The 0-based number of the first column in the set of cells to merge.

Param
numRows
numRows

The number of rows to merge.

Param
numCols
numCols

The number of columns to merge.

Example
Code Block
csharp
csharp
titleC#
table.MergeCells(3, 2, 4, 1);
Code Block
vb.net
vb.net
titlevb.net
table.MergeCells(3, 2, 4, 1)