コード例 #1
0
ファイル: PHPRtfLite.php プロジェクト: naivists/PHPUnit
 /**
  * registers the par format in color table
  *
  * @param PHPRtfLite_ParFormat $parFormat
  */
 public function registerParFormat(PHPRtfLite_ParFormat $parFormat)
 {
     $parFormat->setColorTable($this->getColorTable());
 }
コード例 #2
0
ファイル: Image.php プロジェクト: naivists/PHPUnit
 /**
  * sets paragraph format for image
  *
  * @param PHPRtfLite_ParFormat $parFormat
  */
 public function setParFormat(PHPRtfLite_ParFormat $parFormat)
 {
     $this->_parFormat = $parFormat;
     $parFormat->setColorTable($this->_rtf->getColorTable());
 }