Vtiful\Kernel\Format::underline
(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Format::underline — Подчеркнутый
Описание
public Vtiful\Kernel\Format::underline
( resource
$handle
, int $style
)Подчеркнутый формат Vtiful\Kernel\Format
Список параметров
-
handle
-
Дескриптор файла xlsx
-
style
-
Константа Vtiful\Kernel\Format
Возвращаемые значения
Ресурс
Примеры
Пример #1 Пример использования
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$fileObject = $excel->fileName('tutorial01.xlsx');
$fileHandle = $fileObject->getHandle();
$underlineStyle = \Vtiful\Kernel\Format::underline($fileHandle, \Vtiful\Kernel\Format::UNDERLINE_SINGLE);
$fileObject->header(['name', 'age'])
->data([['viest', 21]])
->setColumn('A:A', 200, $underlineStyle)
->output();
?>