0

最近、私は PHP-Presentation から始めました。プレゼンテーションを読み込んで、セルから値を削除しようとしました。ただし、セルをクリアする機能はありません。

addText()とを見つけましcreateText()た。

    public function modTable($slide = null){
        $shapes = $slide->getShapeCollection();

       foreach($shapes as $shape){
           if(get_class($shape) == "PhpOffice\\PhpPresentation\\Shape\\Table") {
              if($shape->getName()){
                    $shape->getRow(1)->getCell(0)->createTextRun("-TEST1-");
                    $shape->getRow(1)->getCell(0)->getParagraph(0)->createText("-TEST2-");

              }
           }
       }
}
4

1 に答える 1