Conditions | 1 |
Paths | 1 |
Total Lines | 25 |
Code Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function getData($selectedSheetsCount, $firstSheet, $activeSheet) |
||
18 | { |
||
19 | $xWn = 0x0000; // Horizontal position of window |
||
20 | $yWn = 0x0000; // Vertical position of window |
||
21 | $dxWn = 0x25BC; // Width of window |
||
22 | $dyWn = 0x1572; // Height of window |
||
23 | |||
24 | $grbit = 0x0038; // Option flags |
||
25 | $wTabRatio = 0x0258; // Tab to scrollbar ratio |
||
26 | |||
27 | $data = pack( |
||
28 | "vvvvvvvvv", |
||
29 | $xWn, |
||
30 | $yWn, |
||
31 | $dxWn, |
||
32 | $dyWn, |
||
33 | $grbit, |
||
34 | $activeSheet, |
||
35 | $firstSheet, |
||
36 | $selectedSheetsCount, |
||
37 | $wTabRatio |
||
38 | ); |
||
39 | |||
40 | return $this->getFullRecord($data); |
||
41 | } |
||
42 | } |
||
43 |