Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?php

namespace PhpOffice\PhpSpreadsheet\Worksheet;

> use PhpOffice\PhpSpreadsheet\Helper\Dimension as CssDimension; class RowDimension extends Dimension >
{ /** * Row index. *
< * @var int
> * @var ?int
*/ private $rowIndex; /** * Row height (in pt). * * When this is set to a negative value, the row height should be ignored by IWriter * * @var float */ private $height = -1; /** * ZeroHeight for Row? * * @var bool */ private $zeroHeight = false; /** * Create a new RowDimension. *
< * @param int $pIndex Numeric row index
> * @param ?int $index Numeric row index
*/
< public function __construct($pIndex = 0)
> public function __construct($index = 0)
{ // Initialise values
< $this->rowIndex = $pIndex;
> $this->rowIndex = $index;
// set dimension as unformatted by default parent::__construct(null); } /** * Get Row Index.
< * < * @return int
*/
< public function getRowIndex()
> public function getRowIndex(): ?int
{ return $this->rowIndex; } /** * Set Row Index. *
< * @param int $pValue < *
* @return $this */
< public function setRowIndex($pValue)
> public function setRowIndex(int $index)
{
< $this->rowIndex = $pValue;
> $this->rowIndex = $index;
return $this; } /** * Get Row Height.
> * By default, this will be in points; but this method also accepts an optional unit of measure * > * argument, and will convert the value from points to the specified UoM. * @return float > * A value of -1 tells Excel to display this column in its default height.
*/
< public function getRowHeight()
> public function getRowHeight(?string $unitOfMeasure = null)
{
< return $this->height;
> return ($unitOfMeasure === null || $this->height < 0) > ? $this->height > : (new CssDimension($this->height . CssDimension::UOM_POINTS))->toUnit($unitOfMeasure);
} /** * Set Row Height. *
< * @param float $pValue
> * @param float $height in points. A value of -1 tells Excel to display this column in its default height. > * By default, this will be the passed argument value; but this method also accepts an optional unit of measure > * argument, and will convert the passed argument value to points from the specified UoM
* * @return $this */
< public function setRowHeight($pValue)
> public function setRowHeight($height, ?string $unitOfMeasure = null)
{
< $this->height = $pValue;
> $this->height = ($unitOfMeasure === null || $height < 0) > ? $height > : (new CssDimension("{$height}{$unitOfMeasure}"))->height();
return $this; } /** * Get ZeroHeight.
< * < * @return bool
*/
< public function getZeroHeight()
> public function getZeroHeight(): bool
{ return $this->zeroHeight; } /** * Set ZeroHeight. *
< * @param bool $pValue < *
* @return $this */
< public function setZeroHeight($pValue)
> public function setZeroHeight(bool $zeroHeight)
{
< $this->zeroHeight = $pValue;
> $this->zeroHeight = $zeroHeight;
return $this; } }