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

Groups or outlines a contiguous set of rows.

Signature
C#
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)
{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#}
Parameters
Param
startRowIndex
startRowIndex

The 0-based index of the starting row.

Param
numRows
numRows

The number of rows to group.

Param
collapsed
collapsed

Whether or not the group is collapsed.

Example
Code Block
csharp
csharp
titleC#

ws.GroupRows(0, 15, true);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

ws.GroupRows(0, 15, True)
{code} {example}