Format::setPattern
Format::setPattern – セルの網掛けパターン属性を設定する
Synopsis
require_once "Spreadsheet/Excel/Writer.php";
void Format::setPattern (
integer $arg=1
)
Note
This function can not be called
statically.
Example
<?php
require_once 'Spreadsheet/Excel/Writer.php';
$workbook = new Spreadsheet_Excel_Writer();
$worksheet =& $workbook->addWorksheet('色とパターンのテスト');
$worksheet->setRow(1, 30);
$worksheet->setRow(2, 30);
$worksheet->setRow(3, 30);
// 0 から 18 までのパターンが指定できます
for ($i = 0; $i <= 18; $i++)
{
// さまざまなパターンの緑
$another_format1 =& $workbook->addFormat();
$another_format1->setBgColor('green');
$another_format1->setPattern($i);
$worksheet->write(1, $i, "パターン $i", $another_format1);
// さまざまなパターンの赤
$another_format2 =& $workbook->addFormat();
$another_format2->setFgColor('red');
$another_format2->setPattern($i);
$worksheet->write(2, $i, "パターン $i", $another_format2);
// 指定したパターンで赤と緑を混ぜます
$another_format3 =& $workbook->addFormat();
$another_format3->setBgColor('green');
$another_format3->setFgColor('red');
$another_format3->setPattern($i);
$worksheet->write(3, $i, "パターン $i", $another_format3);
}
$workbook->send('setPattern.xls');
$workbook->close();
?>