예제 #1
0
파일: Cell.php 프로젝트: ipv009/wordeditor
 public function addText($text = '', $fStyle = array())
 {
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setText($text);
     $textOfSameFormat->setFStyle($fStyle);
     array_push($this->_text, $textOfSameFormat);
 }
예제 #2
0
 public function addText($text = '', $fStyle = array())
 {
     //array_merge($this->_paragrWithDiffStyle,$text=>);
     //array_push($this->_paragrWithDiffStyle,$text=>$fStyle);
     //$this->_paragrWithDiffStyle[$text]=$fStyle;
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setText($text);
     $textOfSameFormat->setFStyle($fStyle);
     array_push($this->_paragrWithDiffStyle, $textOfSameFormat);
 }