getColumns() 공개 메소드

gets table columns
public getColumns ( ) : PHPRtfLite_Table_Column[]
리턴 PHPRtfLite_Table_Column[]
예제 #1
0
파일: Row.php 프로젝트: naivists/PHPUnit
 /**
  * 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);
     }
 }