addColumn() public method

adds column
public addColumn ( float $width ) : PHPRtfLite_Table_Column
$width float column width
return PHPRtfLite_Table_Column
Esempio n. 1
0
 /**
  * test addColumn
  * @depends testAddColumnList
  */
 public function testAddColumn(PHPRtfLite_Table $table)
 {
     $table->addColumn(7);
     $this->assertEquals(3, $table->getColumnsCount());
     return $table;
 }