Worksheet::setRow -- This method is used to set the height and XF format for a row.
Descripción
This method is used to set the height and XF format for a row. Writes the BIFF record ROW.
Parámetro
integer $row -
The row to set
integer $height -
Height we are giving to the row.
Use NULL to set XF without setting height
mixed $format -
XF format we are giving to the row
Nota
Esta función no puede ser llamada
estáticamente.
|
Worksheet::writeUrl (Previous)
|
(Next) Worksheet::mergeCells
|
|
|
Download Documentation
|
Last updated: Sun, 01 Jul 2007 |
|
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)
|
|