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 beginning of this Element. The table will contain the specified number of rows and columns.

Signature
C#
C#
 public virtual Table InsertTableBefore(int rows, int columns)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Overridable Function InsertTableBefore(ByVal rows As Integer, ByVal columns As Integer) As Table
{signature}
{parameters}
{param:rows}An {{int}} representing the number of rows the table will have.{param}
{param:columns}An {{int}} representing the number of columns the table will have.{param}
{returns}A {{Table}} object representing the newly created table.{returns}
{example}{code:csharp|title=C#}
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 = e.InsertTableBefore(2, 3);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim tbl As Table = e.InsertTableBefore(2, 3)
{code} {example}