addColumnsList() public method

adds list of columns
public addColumnsList ( $columnWidths )
Ejemplo n.º 1
0
 /**
  * tests checkIfCellExists
  */
 public function testCheckIfCellExistsStartIndex()
 {
     $this->_table->addRows(3);
     $this->_table->addColumnsList(array(5, 5, 5, 4));
     $this->assertTrue($this->_table->checkIfCellExists(1, 1));
     return $this->_table;
 }