예제 #1
0
파일: html2pdf.class.php 프로젝트: rzt/lms
 /**
  * new line, with a specific height
  *
  * @access protected
  * @param float   $h
  * @param integer $curr real current position in the text, if new line in the write of a text
  */
 protected function _setNewLine($h, $curr = null)
 {
     $this->pdf->Ln($h);
     $this->_setNewPositionForNewLine($curr);
 }