Page tree

Versions Compared

Key

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

Excerpt

Groups or outlines a contiguous set of rows.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Groups or outlines a contiguous set of rows.{excerpt}
{signature:C#}
 public void GroupRows(int startRowIndex, int numRows, boolean collapsed)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub GroupRows(ByVal startRowIndex As Integer, ByVal numRows As Integer, ByVal collapsed As Boolean)
Parameters
{signature}
{parameters}
{param:startRowIndex}The 0\-based index of the starting row.{param}
{param:numRows}The number of rows to group.{param}
{param:collapsed}Whether or not the group is collapsed.{param}
{example}{code:csharp|title=C#}
ws.GroupRows(0, 15, true);
{code}
{code:vb.net
|title=vb.net
}
ws.GroupRows(0, 15, True){code}

{example}
Param
startRowIndexstartRowIndex

The 0-based index of the starting row.

Param
numRowsnumRows

The number of rows to group.

Param
collapsedcollapsed

Whether or not the group is collapsed.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle