|
@@ 5861-5867 (lines=7) @@
|
| 5858 |
|
$colIndex = 0x00FF & self::_GetInt2d($cellAddressStructure, 2); |
| 5859 |
|
|
| 5860 |
|
// bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) |
| 5861 |
|
if (!(0x4000 & self::_GetInt2d($cellAddressStructure, 2))) { |
| 5862 |
|
$column = PHPExcel_Cell::stringFromColumnIndex($colIndex); |
| 5863 |
|
$column = '$' . $column; |
| 5864 |
|
} else { |
| 5865 |
|
$colIndex = ($colIndex <= 127) ? $colIndex : $colIndex - 256; |
| 5866 |
|
$column = PHPExcel_Cell::stringFromColumnIndex($baseCol + $colIndex); |
| 5867 |
|
} |
| 5868 |
|
|
| 5869 |
|
// bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) |
| 5870 |
|
if (!(0x8000 & self::_GetInt2d($cellAddressStructure, 2))) { |
|
@@ 6041-6049 (lines=9) @@
|
| 6038 |
|
$fcIndex = 0x00FF & self::_GetInt2d($subData, 4); |
| 6039 |
|
|
| 6040 |
|
// bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) |
| 6041 |
|
if (!(0x4000 & self::_GetInt2d($subData, 4))) { |
| 6042 |
|
// absolute column index |
| 6043 |
|
$fc = PHPExcel_Cell::stringFromColumnIndex($fcIndex); |
| 6044 |
|
$fc = '$' . $fc; |
| 6045 |
|
} else { |
| 6046 |
|
// column offset |
| 6047 |
|
$fcIndex = ($fcIndex <= 127) ? $fcIndex : $fcIndex - 256; |
| 6048 |
|
$fc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $fcIndex); |
| 6049 |
|
} |
| 6050 |
|
|
| 6051 |
|
// bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) |
| 6052 |
|
if (!(0x8000 & self::_GetInt2d($subData, 4))) { |
|
@@ 6070-6078 (lines=9) @@
|
| 6067 |
|
$lc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $lcIndex); |
| 6068 |
|
|
| 6069 |
|
// bit: 14; mask 0x4000; (1 = relative column index, 0 = absolute column index) |
| 6070 |
|
if (!(0x4000 & self::_GetInt2d($subData, 6))) { |
| 6071 |
|
// absolute column index |
| 6072 |
|
$lc = PHPExcel_Cell::stringFromColumnIndex($lcIndex); |
| 6073 |
|
$lc = '$' . $lc; |
| 6074 |
|
} else { |
| 6075 |
|
// column offset |
| 6076 |
|
$lcIndex = ($lcIndex <= 127) ? $lcIndex : $lcIndex - 256; |
| 6077 |
|
$lc = PHPExcel_Cell::stringFromColumnIndex($baseCol + $lcIndex); |
| 6078 |
|
} |
| 6079 |
|
|
| 6080 |
|
// bit: 15; mask 0x8000; (1 = relative row index, 0 = absolute row index) |
| 6081 |
|
if (!(0x8000 & self::_GetInt2d($subData, 6))) { |