Prev
Column
ExcelExplorer Manual Next
Cell


(ExcelExplorer 4.0)

Get EERow object for the specified row.

EERow Row( integer $worksheet, integer $row )
Parameters
integer $worksheet
Zero-based worksheet number (first sheet - 0, second - 1, and so on).
 
integer $row
Zero-based row index (first row - 0, second - 1, and so on).
 
Description

Returns EERow object containing info about specified row in the worksheet. Always returns valid object even if no worksheet or row available.

Print 6th row height from the first worksheet


<?php


echo $ee->Row(0,5)->Height();  // Height() returns FALSE if no worksheet or row defined

?>

 
Prev
Column
Home
Up
Next
Cell

 
© 2002-2009 EEPHP.com
All Rights Reserved.