1 | <?php |
||
5 | class Zoom extends AbstractRecord |
||
6 | { |
||
7 | const NAME = 'ZOOM'; |
||
8 | const ID = 0x00A0; |
||
9 | |||
10 | /** |
||
11 | * Store the window zoom factor. This should be a reduced fraction but for |
||
12 | * simplicity we will store all fractions with a numerator of 100. |
||
13 | * @param $zoom |
||
14 | * |
||
15 | * @return string |
||
16 | */ |
||
17 | public function getData($zoom) |
||
23 | } |
||
24 |