Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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

Signature
C#
C#
 public Table InsertTable(int rows, int columns)
Signature
vb.net
vb.net
Public Function InsertTable(ByVal rows As Integer, ByVal columns As Integer) As Table
Parameters
Param
rows
rows

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

Param
columns
columns

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

Returns

A Table object representing the newly created table.

Example
Code Block
csharp
csharp
titleC#
Table tbl = pos.InsertTable(2, 3);
Code Block
vb.net
vb.net
titlevb.net
Dim tbl As Table = pos.InsertTable(2, 3)