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

Creates and returns a Table at the beginning of this Element. The table will contain the specified number of rows and columns.

Signature
C#
C#
 public virtual Table InsertTableBefore(int rows, int columns)
Signature
vb.net
vb.net
Public Overridable Function InsertTableBefore(ByVal rows As Integer, ByVal columns As Integer) As Table
Parameters
Param
rows
rows

An int representing the number of rows the table will have.

Param
columns
columns

An int representing the number of columns the table will have.

Returns

A Table object representing the newly created table.

Example
Code Block
csharp
csharp
titleC#
Table tbl = e.InsertTableBefore(2, 3);
Code Block
vb.net
vb.net
titlevb.net
Dim tbl As Table = e.InsertTableBefore(2, 3)