rowHeight = $rowHeight; } /** * @return Dimension */ public function getRowHeight() { return $this->rowHeight; } /** * Properties and contents of each cell. Cells that span multiple columns are * represented only once with a column_span greater than 1. As a result, the * length of this collection does not always match the number of columns of * the entire table. * * @param TableCell[] $tableCells */ public function setTableCells($tableCells) { $this->tableCells = $tableCells; } /** * @return TableCell[] */ public function getTableCells() { return $this->tableCells; } /** * Properties of the row. * * @param TableRowProperties $tableRowProperties */ public function setTableRowProperties(TableRowProperties $tableRowProperties) { $this->tableRowProperties = $tableRowProperties; } /** * @return TableRowProperties */ public function getTableRowProperties() { return $this->tableRowProperties; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TableRow::class, 'Google_Service_Slides_TableRow');