Format::setHAlign
Format::setHAlign – セルの配置を設定する
Synopsis
require_once "Spreadsheet/Excel/Writer.php";
void Format::setHAlign (
string $location
)
Description
セルの配置を設定します。これは setAlign() の代替となるものです。
Note
This function can not be called
statically.
Example
<?php
require_once 'Spreadsheet/Excel/Writer.php';
$workbook = new Spreadsheet_Excel_Writer();
$worksheet =& $workbook->addWorksheet();
// テキストを上詰めにします
$format_top =& $workbook->addFormat();
$format_top->setHAlign('top');
$format_top->setTextWrap(1);
// テキストの横位置を中央揃えにします
$format_center =& $workbook->addFormat();
$format_center->setHAlign('center');
// テキストを上詰めにし、横位置を中央揃えにします
$format_top_center =& $workbook->addFormat();
$format_top_center->setHAlign('top');
$format_top_center->setHAlign('center');
$worksheet->write(0, 0, 'On top of the world!',
$format_top);
$worksheet->write(1, 0, 'c', $format_center);
$worksheet->write(2, 0, 'tc', $format_top_center);
$workbook->send('align.xls');
$workbook->close();
?>