Worksheet::setRow -- 行の高さおよび書式を設定する
説明
このメソッドは、行の高さおよび XF 書式を設定するために使用します。
BIFF の ROW レコードを書き込みます。
注意
この関数は、スタティックにコールする
ことはできません。
|
Worksheet::writeUrl (Previous)
|
(Next) Worksheet::mergeCells
|
|
|
Download Documentation
|
Last updated: Sun, 05 Oct 2008 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
Note by: Sam H
A list of possible XF format codes would be handy, anyone know where to find one?
Note by: Morten Nilsen
This function has undocumented functionality.
From the source code:
/**
* This method is used to set the height and format for a row.
*
* @access public
* @param integer $row The row to set
* @param integer $height Height we are giving to the row.
* Use null to set XF without setting height
* @param mixed $format XF format we are giving to the row
* @param bool $hidden The optional hidden attribute
* @param integer $level The optional outline level for row, in range [0,7]
*/
function setRow($row, $height, $format = null, $hidden = false, $level = 0)
|
|