1 | <?php |
||
5 | class Guts extends AbstractRecord |
||
6 | { |
||
7 | const NAME = 'GUTS'; |
||
8 | const ID = 0x0080; |
||
9 | |||
10 | /** |
||
11 | * Generate the GUTS BIFF record. This is used to configure the gutter margins |
||
12 | * where Excel outline symbols are displayed. The visibility of the gutters is |
||
13 | * controlled by a flag in WSBOOL. |
||
14 | * |
||
15 | * @param $colInfo |
||
16 | * @param $outlineRowLevel |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | public function getData($colInfo, $outlineRowLevel) |
||
49 | } |
||
50 |