Adds a Cell to the Table.

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

Syntax

C#
public void AddCell(
	Phrase content
)
Visual Basic
Public Sub AddCell ( _
	content As Phrase _
)
Visual C++
public:
void AddCell(
	Phrase^ content
)

Parameters

content
Type: iTextSharp.text..::..Phrase
a Phrase

Remarks

This is a shortcut for AddCell(Cell cell). The Phrase will be converted to a Cell.

See Also