| 1 | <?php |
||
| 4 | class Row extends AbstractRecord |
||
| 5 | { |
||
| 6 | const NAME = 'ROW'; |
||
| 7 | const ID = 0x0208; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param array $rowInfo |
||
| 11 | * |
||
| 12 | * @return string |
||
| 13 | */ |
||
| 14 | public function getData($rowInfo) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the options flags. fUnsynced is used to show that the font and row |
||
| 47 | * heights are not compatible. This is usually the case for WriteExcel. |
||
| 48 | * The collapsed flag 0x10 doesn't seem to be used to indicate that a row |
||
| 49 | * is collapsed. Instead it is used to indicate that the previous row is |
||
| 50 | * collapsed. The zero height flag, 0x20, is used to collapse a row. |
||
| 51 | * |
||
| 52 | * @param $format |
||
| 53 | * @param $hidden |
||
| 54 | * @param $level |
||
| 55 | * |
||
| 56 | * @return int |
||
| 57 | */ |
||
| 58 | protected function getGrBit($format, $hidden, $level) |
||
| 77 | } |
||
| 78 |