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

 public virtual Table InsertTableAfter(int rows, int columns)
Public Overridable Function InsertTableAfter(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.InsertTableAfter(2, 3);
Dim tbl As Table = e.InsertTableAfter(2, 3)