Php/docs/vtiful-kernel-format.bold
From Get docs
Vtiful\Kernel\Format::bold
(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Format::bold — Vtiful\Kernel\Format bold
Parameters
handle
- xlsx file handle
Return Values
Resource
Examples
Example #1 example
<?php$config = [ 'path' => './tests'];$excel = new \Vtiful\Kernel\Excel($config);$fileObject = $excel->fileName('tutorial01.xlsx');$fileHandle = $fileObject->getHandle();$boldStyle = \Vtiful\Kernel\Format::bold($fileHandle);$fileObject->header(['name', 'age']) ->data(Php/docs/'viest', 21) ->setColumn('A:A', 200, $boldStyle) ->output();?>