sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/CoordinateIsRange.php

25 lines
242 B
PHP
Raw Normal View History

<?php
return [
[
false,
'A1',
],
[
false,
'$A$1',
],
[
true,
'A1,C3',
],
[
true,
'A1:A10',
],
[
true,
'A1:A10,C4',
],
];