/** * sets default font for all cells in the row * * @param PHPRtfLite_Font $font */ public function setFont(PHPRtfLite_Font $font) { $columns = $this->_table->getColumns(); foreach ($columns as $i => $column) { $cell = $this->_table->getCell($this->_rowIndex, $column->getColumnIndex()); $cell->setFont($font); } }