Creates and returns a Table at the beginning 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 InsertTableBefore(int rows, int columns, TableFormatting props)
Public Overridable Function InsertTableBefore(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.InsertTableBefore(2, 3, tFormatting);
Dim tbl As Table = e.InsertTableBefore(2, 3, tFormatting)