Creates and returns a Table at the point represented by this Position. The table will contain the specified number of rows and columns.

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