PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Worksheet::setPaper | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Worksheet::setPaper

Worksheet::setPaper – 用紙設定をする (例えば 1 が US レター、9 が A4 サイズ)

Synopsis

require_once "Spreadsheet/Excel/Writer.php";

void Worksheet::setPaper ( integer $size=0 )

Description

用紙の種類を設定します。例えば「1 = US Letter」、「9 = A4」です。

Parameter

  • integer $size - 使用する用紙サイズの種類。

Note

This function can not be called statically.

Example

setPaper() の使用法

<?php

require_once 'Spreadsheet/Excel/Writer.php';

// ワークブックを作成します
$workbook = new Spreadsheet_Excel_Writer();

// HTTP ヘッダを送信します
$workbook->send('test.xls');

// ワークシートを作成します
$worksheet =& $workbook->addWorksheet('My first worksheet');

// 用紙サイズを設定します
$worksheet->setPaper(9);

// データを設定します
$worksheet->write(00'Name');
$worksheet->write(01'Age');
$worksheet->write(10'John Smith');
$worksheet->write(1130);
$worksheet->write(20'Johann Schmidt');
$worksheet->write(2131);
$worksheet->write(30'Juan Herrera');
$worksheet->write(3132);

// ファイルを送信します
$workbook->close();
?>
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Worksheet::setPaper」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Worksheet::setPaper」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: