Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]])
w
h
txt
border
ln
align
fill
link
//Stel lettertype in
$pdf->SetFont('Arial','B',16);
//Ga 8 cm naar rechts
$pdf->Cell(80);
//Gecentreerde tekst in een 20*10 mm cel met rand en line break
$pdf->Cell(20,10,'Title',1,1,'C');