Tab color
Function Prototype
php
setTabColor(int $rgb): selfint $rgb
Sheet tab color expressed as a
0xRRGGBBinteger. TheFormat::COLOR_*constants can be used as well. For example0xFF0000is red and0x00B050is green.
Example
php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$excel->fileName('tutorial.xlsx', 'sheet1')
->setTabColor(0xFF0000)
->addSheet('sheet2')
->setTabColor(\Vtiful\Kernel\Format::COLOR_GREEN)
->output();