1 | <?php |
||
5 | class Colinfo extends AbstractRecord |
||
6 | { |
||
7 | const NAME = 'COLINFO'; |
||
8 | const ID = 0x7D; |
||
9 | |||
10 | /** |
||
11 | * Generate the COLINFO biff record to define column widths |
||
12 | * |
||
13 | * @param array $colInfo This is the only parameter received and is composed of the following: |
||
14 | * 0 => First formatted column, |
||
15 | * 1 => Last formatted column, |
||
16 | * 2 => Col width (8.43 is Excel default), |
||
17 | * 3 => The optional XF format of the column, |
||
18 | * 4 => Option flags. |
||
19 | * 5 => Optional outline level |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getData($colInfo) |
||
53 | } |
||
54 |