| 1 | <?php |
||
| 7 | class Workbook |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var int |
||
| 11 | */ |
||
| 12 | private $printTitleStart; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | private $printTitleEnd; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Set the range of rows to repeat when printing the excel file. |
||
| 21 | * $startRow=1 and $endRow=1 will repeat the first row only. |
||
| 22 | * |
||
| 23 | * @param int $startRow |
||
| 24 | * @param int $endRow |
||
| 25 | */ |
||
| 26 | public function setPrintTitleRange($startRow, $endRow) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getWorkbookXml() |
||
| 50 | } |