ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilDclTextSelectionRecordFieldModel.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PhpOffice\PhpSpreadsheet\Cell\DataType;
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}
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.