예제 #1
0
파일: Cell.php 프로젝트: ipv009/wordeditor
 public function addTextBreak()
 {
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setBreak();
     array_push($this->_text, $textOfSameFormat);
 }
예제 #2
0
 public function addTable($styleTable = array())
 {
     echo 'add a table!!' . '<br />';
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setTable($styleTable);
     $this->_tableNow = $textOfSameFormat;
     array_push($this->_paragrWithDiffStyle, $this->_tableNow);
 }