Exemplo n.º 1
0
 /**
  * 備考の出力を行う
  *
  * @return string 変更後の文字列
  */
 private function setEtcData()
 {
     $this->Cell(0, 10, '', 0, 1, 'C', 0, '');
     $this->SetFont('Gothic', 'B', 9);
     $this->MultiCell(0, 6, '< 備考 >', 'T', 2, 'L', 0, '');
     $this->SetFont('SJIS', '', 8);
     $text = Utils::rtrim($this->arrData['etc1'] . "\n" . $this->arrData['etc2'] . "\n" . $this->arrData['etc3']);
     $this->MultiCell(0, 4, $text, '', 2, 'L', 0, '');
 }