Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Ungroups a contiguous set of rows.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Ungroups a contiguous set of rows.{excerpt}
{signature:C#}
 public void UngroupRows(int startRowIndex, int numRows)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub UngroupRows(ByVal startRowIndex As Integer, ByVal numRows As Integer)
Parameters
{signature}
{parameters}
{param:startRowIndex}The 0\-based index of the starting row.{param}
{param:numRows}The number of rows to ungroup.{param}
{example}{code:csharp|title=C#}
ws.UngroupRows(0, 15);
{code}
{code:vb.net
|title=vb.net
}
ws.UngroupRows(0, 15){code}

{example}
Param
startRowIndexstartRowIndex

The 0-based index of the starting row.

Param
numRowsnumRows

The number of rows to ungroup.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle