灰色的图案

时间:2010-10-29 13:33:25

标签: php excel

<?php
require_once 'Spreadsheet/Excel/Writer.php';

$workbook = new Spreadsheet_Excel_Writer();

$format6 =& $workbook->addFormat();
$format6->setBgColor('green');
$format6->setPattern(6);
$worksheet->write(1, 1, 'the bg', $format6);

$workbook->send('setBgColor.xls');
$workbook->close();
?> 

请告诉我“灰色”颜色的图案。如果是绿色则为6。

2 个答案:

答案 0 :(得分:0)

如果不知道'Spreadsheet / Excel / Writer.php'包含什么,可能很难回答。

您是否尝试过将$format6->setBgColor('green');更改为$format6->setBgColor('grey');(或“灰色”,拼写可以互换)

答案 1 :(得分:0)

15,16和48都是灰色的。有关完整列表,请参阅此页面:http://www.mvps.org/dmcritchie/excel/colors.htm

将这些值传递给setBgColorsetPattern在实心填充,点等之间发生变化