getRowsCount() public method

gets number of rows in table
public getRowsCount ( ) : integer
return integer
示例#1
0
 /**
  * tests addRow
  * @depends testAddRowList
  */
 public function testAddRow(PHPRtfLite_Table $table)
 {
     $rowHeight = 2.5;
     $table->addRow($rowHeight);
     $this->assertEquals(7, $table->getRowsCount());
 }