コード例 #1
0
ファイル: Cell.php プロジェクト: ipv009/wordeditor
 public function addTextBreak()
 {
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setBreak();
     array_push($this->_text, $textOfSameFormat);
 }
コード例 #2
0
ファイル: Paragraph.php プロジェクト: ipv009/wordeditor
 public function addBreak()
 {
     $textOfSameFormat = new TextOfSameFormat();
     $textOfSameFormat->setBreak();
     array_push($this->_paragrWithDiffStyle, $textOfSameFormat);
 }