Lines Matching refs:cell

27 		while (isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col])) {
404 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col] = $c;
406 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0;
410 $cs = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['colspan'] = $attr['COLSPAN'];
419 $this->mpdf->cell[$this->mpdf->row][$l] = 0;
424 $rs = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['rowspan'] = $attr['ROWSPAN'];
430 $this->mpdf->cell[$k][$l] = 0;
447 // Added for correct calculation of cell column width - otherwise misses the last line if not end </p> etc.
448 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) {
449 if (!is_array($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col])) {
452 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
453 } elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s']) {
454 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
457 // Remove last <br> if at end of cell
459 if (isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'])) {
460 $ntb = count($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer']);
462 if ($ntb > 1 && $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][$ntb - 1][0] === "\n") {
463 unset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][$ntb - 1]);