rowHeight = $rowHeight;
}
/**
* @return Dimension
*/
public function getRowHeight()
{
return $this->rowHeight;
}
/**
* @param TableCell[]
*/
public function setTableCells($tableCells)
{
$this->tableCells = $tableCells;
}
/**
* @return TableCell[]
*/
public function getTableCells()
{
return $this->tableCells;
}
/**
* @param 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');