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

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

Signature
C#
C#
 public void AddRows(int numRows)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub AddRows(ByVal numRows As Integer)
{signature}
{parameters}
{param:numRows}The number of rows to add to the table.{param}
{example}{code:csharp|title=C#}
Parameters
Param
numRows
numRows

The number of rows to add to the table.

Example
Code Block
csharp
csharp
titleC#

tbl.AddRows(4);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

tbl.AddRows(4)
{code} {example}