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,
	Point location
)
Visual Basic
Public Sub AddCell ( _
	content As String, _
	location As Point _
)
Visual C++
public:
void AddCell(
	String^ content, 
	Point location
)

Parameters

content
Type: System..::..String
a string
location
Type: System.Drawing..::..Point
a point

Remarks

This is a shortcut for AddCell(Cell cell, System.Drawing.Point location). The string will be converted to a Cell.

See Also