To put a table within the existing table at the given position generateTable will of course re-arrange the widths of the columns.

Namespace: iTextSharp.text
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public void InsertTable(
	Table aTable,
	int row,
	int column
)
Visual Basic
Public Sub InsertTable ( _
	aTable As Table, _
	row As Integer, _
	column As Integer _
)
Visual C++
public:
void InsertTable(
	Table^ aTable, 
	int row, 
	int column
)

Parameters

aTable
Type: iTextSharp.text..::..Table
The Table to add
row
Type: System..::..Int32
The row where the Cell will be added
column
Type: System..::..Int32
The column where the Cell will be added

See Also