Page tree

Versions Compared

Key

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

Excerpt

Adds a specified number of rows to the vertical end of the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Adds a specified number of rows to the vertical end of the table.{excerpt}
{signature:C#}
 public void AddRows(int numRows)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub AddRows(ByVal numRows As Integer)
Parameters
{signature}
{parameters}
{param:numRows}The number of rows to add to the table.{param}
{example}{code:csharp|title=C#}
tbl.AddRows(4);
{code}
{code:vb.net
|title=vb.net
}
tbl.AddRows(4){code}

{example}
Param
numRowsnumRows

The number of rows to add to the table.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle