addColumn() публичный Метод

adds column
public addColumn ( float $width ) : PHPRtfLite_Table_Column
$width float column width
Результат PHPRtfLite_Table_Column
Пример #1
0
 /**
  * test addColumn
  * @depends testAddColumnList
  */
 public function testAddColumn(PHPRtfLite_Table $table)
 {
     $table->addColumn(7);
     $this->assertEquals(3, $table->getColumnsCount());
     return $table;
 }