You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
687 B
46 lines
687 B
<?php
|
|
|
|
return [
|
|
'Cell Range' => [
|
|
[
|
|
[2, 4],
|
|
[5, 9],
|
|
],
|
|
'B4:E9',
|
|
],
|
|
'Single Cell' => [
|
|
[
|
|
[2, 4],
|
|
[2, 4],
|
|
],
|
|
'B4',
|
|
],
|
|
'Column Range' => [
|
|
[
|
|
[2, 1],
|
|
[3, 1048576],
|
|
],
|
|
'B:C',
|
|
],
|
|
'Single Column Range' => [
|
|
[
|
|
[2, 1],
|
|
[2, 1048576],
|
|
],
|
|
'B:B',
|
|
],
|
|
'Row Range' => [
|
|
[
|
|
[1, 2],
|
|
[16384, 3],
|
|
],
|
|
'2:3',
|
|
],
|
|
'Single Row Range' => [
|
|
[
|
|
[1, 2],
|
|
[16384, 2],
|
|
],
|
|
'2:2',
|
|
],
|
|
];
|
|
|