For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
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.

86 lines
2.4 KiB

  1. <?php
  2. /**
  3. * PHPExcel_Worksheet_Row
  4. *
  5. * Copyright (c) 2006 - 2015 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Worksheet
  23. * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. class PHPExcel_Worksheet_Row
  28. {
  29. /**
  30. * PHPExcel_Worksheet
  31. *
  32. * @var PHPExcel_Worksheet
  33. */
  34. private $parent;
  35. /**
  36. * Row index
  37. *
  38. * @var int
  39. */
  40. private $rowIndex = 0;
  41. /**
  42. * Create a new row
  43. *
  44. * @param PHPExcel_Worksheet $parent
  45. * @param int $rowIndex
  46. */
  47. public function __construct(PHPExcel_Worksheet $parent = null, $rowIndex = 1)
  48. {
  49. // Set parent and row index
  50. $this->parent = $parent;
  51. $this->rowIndex = $rowIndex;
  52. }
  53. /**
  54. * Destructor
  55. */
  56. public function __destruct()
  57. {
  58. unset($this->parent);
  59. }
  60. /**
  61. * Get row index
  62. *
  63. * @return int
  64. */
  65. public function getRowIndex()
  66. {
  67. return $this->rowIndex;
  68. }
  69. /**
  70. * Get cell iterator
  71. *
  72. * @param string $startColumn The column address at which to start iterating
  73. * @param string $endColumn Optionally, the column address at which to stop iterating
  74. * @return PHPExcel_Worksheet_CellIterator
  75. */
  76. public function getCellIterator($startColumn = 'A', $endColumn = null)
  77. {
  78. return new PHPExcel_Worksheet_RowCellIterator($this->parent, $this->rowIndex, $startColumn, $endColumn);
  79. }
  80. }