ILIAS  release_8 Revision v8.24
class.ilDclTextSelectionRecordFieldModel.php
Go to the documentation of this file.
1<?php
2
19use PhpOffice\PhpSpreadsheet\Cell\DataType;
20
22{
23 public const PROP_SELECTION_TYPE = 'text_selection_type';
24 public const PROP_SELECTION_OPTIONS = 'text_selection_options';
25
29 public function fillExcelExport(ilExcel $worksheet, int &$row, int &$col): void
30 {
31 $worksheet->setCell($row, $col, $this->getExportValue(), DataType::TYPE_STRING);
32 $col++;
33 }
34}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)
setCell(int $a_row, int $a_col, $a_value, ?string $a_datatype=null)
Set cell value.