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
Wiki Markup
{description}
{excerpt}Merges the specified set of cells into a single cell.{excerpt}
{signature:C#}
 public void MergeCells(int firstRow, int firstCol, int numRows, int numCols)
{signature}{signature:vb.net}
Public Sub MergeCells(ByVal firstRow As Integer, ByVal firstCol As Integer, ByVal numRows As Integer, ByVal numCols As Integer)
{signature}
{parameters}
{param:firstRow}The 0\-based number of the first row in the set of cells to merge.{param}
{param:firstCol}The 0\-based number of the first column in the set of cells to merge.{param}
{param:numRows}The number of rows to merge.{param}
{param:numCols}The number of columns to merge.{param}
{example}{code:csharp|title=C#}
table.MergeCells(3, 2, 4, 1);{code}
{code:vb.net|title=vb.net}
table.MergeCells(3, 2, 4, 1){code}

{example}