ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
class.ilDclTextSelectionRecordFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
28  public function fillExcelExport(ilExcel $worksheet, int &$row, int &$col): void
29  {
30  $worksheet->setCell($row, $col, $this->getExportValue(), DataType::TYPE_STRING);
31  $col++;
32  }
33 }
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)