setBgColor()函數是PHP中的內置函數| Spreadsheet_Excel_Writer,用於設置電子表格單元格的背景色。為了使用此函數,請使用setPattern函數。
用法:
void Format::setBgColor( $color )
參數:此函數接受單個參數$color,該參數將color的值作為字符串使用,例如“ red”,“ green”,而另一種方法是在8到63之間指定顏色值。
返回值:成功時返回TRUE,失敗時返回PEAR_ERROR。
範例1:
<?php
require_once 'Spreadsheet/Excel/Writer.php';
// Create Spreadsheet Excel Writer Object
$workbook = new Spreadsheet_Excel_Writer();
// Add Worksheet
$worksheet =& $workbook->addWorksheet('testing bg color');
// Specify the height of the cell by using setRow function
$worksheet->setRow(1, 20);
// Add Format to the cell
$format_BgColor =& $workbook->addFormat();
// Set the background color
$format_BgColor->setBgColor('red');
// Add Italic Font to the text
$format_BgColor->setItalic();
// Set the pattern
$format_BgColor->setPattern(4);
// Add data to the cell
$worksheet->write(1, 2, 'sarthak _ishu11', $format_BgColor);
$worksheet->write(2, 2, 'GeekforGeeks!', $format_BgColor);
$worksheet->write(3, 2, 'GfG', $format_BgColor);
// Send file to the browser
$workbook->send('test.xls');
// Close the file
$workbook->close();
?>
輸出:
範例2:
<?php
require_once 'Spreadsheet/Excel/Writer.php';
// Create Spreadsheet_Excel_Writer Object
$workbook = new Spreadsheet_Excel_Writer();
// Add Worksheet
$worksheet =& $workbook->addWorksheet();
// Set Font Family Times New Roman
$format_setBgColor =& $workbook->addFormat();
$format_setBgColor->setFontFamily('Times New Roman');
// Set Italic Property
$format_setBgColor->setItalic();
// Set Shadow to text
$format_setBgColor->setShadow();
// Set the background color
$format_setBgColor->setBgColor('yellow');
// Set the pattern
$format_setBgColor->setPattern(4);
// Write to Worksheet
$worksheet->write(0, 0, "Information", $format_setBgColor);
$worksheet->write(1, 0, "Website Name", $format_setBgColor);
$worksheet->write(1, 1, "Address", $format_setBgColor);
$worksheet->write(2, 0, "GeeksforGeeks", $format_setItalic);
$worksheet->write(2, 1, "https://www.geeksforgeeks.org/",
$format_setItalic);
$workbook->send('test.xls');
$workbook->close();
?>
輸出:
相關用法
- d3.js d3.map.set()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP abs()用法及代碼示例
- p5.js int()用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js str()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP end()用法及代碼示例
- PHP tan( )用法及代碼示例
- p5.js hex()用法及代碼示例
- p5.js arc()用法及代碼示例
- p5.js cos()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Spreadsheet_Excel_Writer | setBgColor() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。