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

 public virtual Table InsertTableBefore(int rows, int columns)
Public Overridable Function InsertTableBefore(ByVal rows As Integer, ByVal columns As Integer) As Table

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

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

A Table object representing the newly created table.

Table tbl = e.InsertTableBefore(2, 3);
Dim tbl As Table = e.InsertTableBefore(2, 3)