columnSpan = $columnSpan; } /** * @return int */ public function getColumnSpan() { return $this->columnSpan; } /** * @param int */ public function setRowSpan($rowSpan) { $this->rowSpan = $rowSpan; } /** * @return int */ public function getRowSpan() { return $this->rowSpan; } /** * @param TableCellLocation */ public function setTableCellLocation(TableCellLocation $tableCellLocation) { $this->tableCellLocation = $tableCellLocation; } /** * @return TableCellLocation */ public function getTableCellLocation() { return $this->tableCellLocation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TableRange::class, 'Google_Service_Docs_TableRange');