Message-ID: <810070982.8063.1711630786153.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8062_2110860946.1711630786153" ------=_Part_8062_2110860946.1711630786153 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Element.InsertTableBefore(Int32, Int32, TableFormatting)

Element.InsertTableBefore(Int32, Int32, TableFormatting)

Description

=20

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

= =20
C#
=20
 public virtual Table InsertTableBefore(int rows, int columns, TableFormatt=
ing props)
=20
=20
vb.net
=20
Public Overridable Function InsertTableBefore(ByVal rows As Integer, ByVal =
columns As Integer, ByVal props As TableFormatting) As Table
=20
=20

Parameters

=20
rows=
An=20 int representing the number of rows the table will have.=20
c= olumns
An=20 int representing the number of columns the table will have.=20
pro= ps
A=20 TableFormatting object representing the formatting properties to apply to the table.=20

R= eturns

A=20 Table object representing the newly created table.=20

= Examples

=20
C#
=20
Table tbl =3D e.InsertTableBefore(2, 3, tFormatting);
=20
=20
vb.net
=20
Dim tbl As Table =3D e.InsertTableBefore(2, 3, tFormatting)
=20
------=_Part_8062_2110860946.1711630786153--