Adds a Cell to the Table.

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

Syntax

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

Parameters

content
Type: System..::..String
a string

Remarks

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

See Also