Creates and returns a Table at the end of this Element. The table will contain the specified number of rows and columns. It will also be formatted with the properties specified.

 public virtual Table InsertTableAfter(int rows, int columns, TableFormatting props)
Public Overridable Function InsertTableAfter(ByVal rows As Integer, ByVal columns As Integer, ByVal props As TableFormatting) 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 TableFormatting object representing the formatting properties to apply to the table.

A Table object representing the newly created table.

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